diff options
Diffstat (limited to 'mobile/android/components/build/nsIShellService.idl')
-rw-r--r-- | mobile/android/components/build/nsIShellService.idl | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/mobile/android/components/build/nsIShellService.idl b/mobile/android/components/build/nsIShellService.idl new file mode 100644 index 000000000..e7f8d9277 --- /dev/null +++ b/mobile/android/components/build/nsIShellService.idl @@ -0,0 +1,26 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* 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/. */ + +#include "nsISupports.idl" + +[scriptable, uuid(fd2450a3-966b-44a9-a8eb-316256bb80b4)] +interface nsIShellService : nsISupports +{ + /** + * This method displays a UI to switch to (or launch) a different task + */ + void switchTask(); + + /** + * 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 obsolete and ignored, but remains for backward compatibility; pass an empty string + * @param aIntent obsolete and ignored, but remains for backward compatibility; pass an empty string + */ + void createShortcut(in AString aTitle, in AString aURI, in AString aIconData, in AString aIntent); +}; |