2009-02-13 19:41:12 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2009-02-13 19:41:12 +00:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
2011-08-09 02:37:57 +00:00
|
|
|
[scriptable, uuid(fd2450a3-966b-44a9-a8eb-316256bb80b4)]
|
|
|
|
interface nsIShellService : nsISupports
|
2009-02-13 19:41:12 +00:00
|
|
|
{
|
2009-09-23 16:09:54 +00:00
|
|
|
/**
|
|
|
|
* This method displays a UI to switch to (or launch) a different task
|
|
|
|
*/
|
|
|
|
void switchTask();
|
2011-08-09 02:37:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This method creates a shortcut on a desktop or homescreen that opens in
|
|
|
|
* the our application.
|
|
|
|
*
|
|
|
|
* @param aTitle the user-friendly name of the shortcut.
|
|
|
|
* @param aURI the URI to open.
|
|
|
|
* @param aIconData a base64 encoded representation of the shortcut's icon.
|
|
|
|
* @param aIntent how the URI should be opened. Examples: "default", "bookmark" and "webapp"
|
|
|
|
*/
|
|
|
|
void createShortcut(in AString aTitle, in AString aURI, in AString aIconData, in AString aIntent);
|
2009-02-13 19:41:12 +00:00
|
|
|
};
|