зеркало из https://github.com/mozilla/gecko-dev.git
99 строки
2.8 KiB
Plaintext
99 строки
2.8 KiB
Plaintext
/* 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 "domstubs.idl"
|
|
|
|
interface mozIApplication;
|
|
interface nsIURI;
|
|
|
|
%{C++
|
|
#define APPS_SERVICE_CID { 0x05072afa, 0x92fe, 0x45bf, { 0xae, 0x22, 0x39, 0xb6, 0x9c, 0x11, 0x70, 0x58 } }
|
|
#define APPS_SERVICE_CONTRACTID "@mozilla.org/AppsService;1"
|
|
%}
|
|
|
|
/*
|
|
* This service allows accessing some DOMApplicationRegistry methods from
|
|
* non-javascript code.
|
|
*/
|
|
[scriptable, uuid(711cfab6-7b72-4aa2-a60c-17952ea05661)]
|
|
interface nsIAppsService : nsISupports
|
|
{
|
|
mozIApplication getAppByManifestURL(in DOMString manifestURL);
|
|
|
|
/**
|
|
* Returns a Promise for the manifest for a given manifestURL.
|
|
* This is only supported in the parent process: the promise will be rejected
|
|
* in content processes.
|
|
*/
|
|
jsval getManifestFor(in DOMString manifestURL);
|
|
|
|
/**
|
|
* Returns the |localId| of the app associated with the |manifestURL| passed
|
|
* in parameter.
|
|
* Returns nsIScriptSecurityManager::NO_APP_ID if |manifestURL| isn't a valid
|
|
* installed manifest URL.
|
|
*/
|
|
unsigned long getAppLocalIdByManifestURL(in DOMString manifestURL);
|
|
|
|
/**
|
|
* Returns the application associated to this localId.
|
|
*/
|
|
mozIApplication getAppByLocalId(in unsigned long localId);
|
|
|
|
/**
|
|
* Returns the manifest URL associated to this localId.
|
|
*/
|
|
DOMString getManifestURLByLocalId(in unsigned long localId);
|
|
|
|
/**
|
|
* Returns the manifest CSP associated to this localId.
|
|
*/
|
|
DOMString getManifestCSPByLocalId(in unsigned long localId);
|
|
|
|
/**
|
|
* Returns the default CSP associated to this localId.
|
|
*/
|
|
DOMString getDefaultCSPByLocalId(in unsigned long localId);
|
|
|
|
/**
|
|
* Returns the basepath for core apps
|
|
*/
|
|
DOMString getCoreAppsBasePath();
|
|
|
|
/**
|
|
* Returns the basepath for regular packaged apps
|
|
*/
|
|
DOMString getWebAppsBasePath();
|
|
|
|
jsval getAppInfo(in DOMString appId);
|
|
|
|
/**
|
|
* Returns a URI to redirect to when we get a redirection to 'uri'.
|
|
* Returns null if no redirection is declared for this uri.
|
|
*/
|
|
nsIURI getRedirect(in unsigned long localId, in nsIURI uri);
|
|
|
|
/**
|
|
* Returns the localId if the app was installed from a store
|
|
*/
|
|
DOMString getAppLocalIdByStoreId(in DOMString storeID);
|
|
|
|
/**
|
|
* Returns the scope for app to use with service workers.
|
|
*/
|
|
DOMString getScopeByLocalId(in unsigned long localId);
|
|
|
|
/**
|
|
* Returns true if this uri is a script or css resource loaded
|
|
* from an extension.
|
|
* Available only in the parent process.
|
|
*/
|
|
bool isExtensionResource(in nsIURI uri);
|
|
|
|
/**
|
|
* Reads the manifest file for this app and update the DataStore map
|
|
*/
|
|
void updateDataStoreEntriesFromLocalId(in unsigned long localId);
|
|
};
|