2018-03-12 12:16:51 +03: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/. */
|
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allow applications to interface with the Mac OS X Sharing APIs.
|
|
|
|
*/
|
|
|
|
|
|
|
|
[scriptable, uuid(de59fe1a-46c8-490f-b04d-34545acb06c9)]
|
|
|
|
interface nsIMacSharingService : nsISupports
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Get list of sharing providers
|
|
|
|
*/
|
2018-04-25 10:23:32 +03:00
|
|
|
[implicit_jscontext] jsval getSharingProviders(in AString pageUrl);
|
2018-03-12 12:16:51 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Launch service with shareTitle with given url
|
|
|
|
*/
|
2018-04-25 10:23:32 +03:00
|
|
|
void shareUrl(in AString serviceName,
|
|
|
|
in AString pageUrl,
|
|
|
|
in AString pageTitle);
|
2018-06-30 20:35:46 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Open the MacOS preferences window to the sharing panel
|
|
|
|
*/
|
|
|
|
void openSharingPreferences();
|
2018-03-12 12:16:51 +03:00
|
|
|
};
|