1999-10-26 12:13:25 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 15:12:37 +04: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/. */
|
1999-10-26 12:13:25 +04:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
2005-02-23 00:49:45 +03:00
|
|
|
|
2004-09-22 00:19:48 +04:00
|
|
|
interface nsIURI;
|
1999-10-26 12:13:25 +04:00
|
|
|
|
2008-11-14 03:00:11 +03:00
|
|
|
[scriptable, uuid(249fb5ad-ae29-4e2c-a728-ba5cf464d188)]
|
1999-10-26 12:13:25 +04:00
|
|
|
interface nsIChromeRegistry : nsISupports
|
|
|
|
{
|
2012-08-22 19:56:38 +04:00
|
|
|
const int32_t NONE = 0;
|
|
|
|
const int32_t PARTIAL = 1;
|
|
|
|
const int32_t FULL = 2;
|
2002-01-06 23:09:10 +03:00
|
|
|
|
2000-01-06 03:31:06 +03:00
|
|
|
/**
|
2005-02-23 00:49:45 +03:00
|
|
|
* Resolve a chrome URL to an loadable URI using the information in the
|
|
|
|
* registry. Does not modify aChromeURL.
|
2000-01-06 03:31:06 +03:00
|
|
|
*
|
|
|
|
* Chrome URLs are allowed to be specified in "shorthand", leaving the
|
2000-02-04 15:17:39 +03:00
|
|
|
* "file" portion off. In that case, the URL is expanded to:
|
2000-01-06 03:31:06 +03:00
|
|
|
*
|
|
|
|
* chrome://package/provider/package.ext
|
|
|
|
*
|
|
|
|
* where "ext" is:
|
|
|
|
*
|
|
|
|
* "xul" for a "content" package,
|
|
|
|
* "css" for a "skin" package, and
|
|
|
|
* "dtd" for a "locale" package.
|
|
|
|
*
|
|
|
|
* @param aChromeURL the URL that is to be converted.
|
|
|
|
*/
|
2005-02-23 00:49:45 +03:00
|
|
|
nsIURI convertChromeURL(in nsIURI aChromeURL);
|
2000-01-06 03:31:06 +03:00
|
|
|
|
2002-04-12 05:52:27 +04:00
|
|
|
/**
|
|
|
|
* refresh the chrome list at runtime, looking for new packages/etc
|
|
|
|
*/
|
|
|
|
void checkForNewChrome();
|
|
|
|
};
|
|
|
|
|
2015-02-05 19:09:15 +03:00
|
|
|
[scriptable, uuid(93251ddf-5e85-4172-ac2a-31780562974f)]
|
2004-09-22 00:19:48 +04:00
|
|
|
interface nsIXULChromeRegistry : nsIChromeRegistry
|
|
|
|
{
|
2017-02-03 01:12:50 +03:00
|
|
|
// Get whether the default writing direction of the locale is RTL
|
|
|
|
// (or may be overridden by intl.uidirection pref)
|
2009-12-21 13:21:52 +03:00
|
|
|
boolean isLocaleRTL(in ACString package);
|
|
|
|
|
2005-02-23 00:49:45 +03:00
|
|
|
/**
|
|
|
|
* Installable skin XBL is not always granted the same privileges as other
|
|
|
|
* chrome. This asks the chrome registry whether scripts are allowed to be
|
|
|
|
* run for a particular chrome URI. Do not pass non-chrome URIs to this
|
|
|
|
* method.
|
|
|
|
*/
|
|
|
|
boolean allowScriptsForPackage(in nsIURI url);
|
2008-04-11 17:39:43 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Content should only be allowed to load chrome JS from certain packages.
|
|
|
|
* This method reflects the contentaccessible flag on packages.
|
|
|
|
* Do not pass non-chrome URIs to this method.
|
|
|
|
*/
|
|
|
|
boolean allowContentToAccess(in nsIURI url);
|
2015-02-05 19:09:15 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if the passed chrome URL is allowed to be loaded in a remote
|
|
|
|
* process. This reflects the remoteenabled flag on packages.
|
|
|
|
* Do not pass non-chrome URIs to this method.
|
|
|
|
*/
|
|
|
|
boolean canLoadURLRemotely(in nsIURI url);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if the passed chrome URL must be loaded in a remote process.
|
|
|
|
* This reflects the remoterequired flag on packages.
|
|
|
|
* Do not pass non-chrome URIs to this method.
|
|
|
|
*/
|
|
|
|
boolean mustLoadURLRemotely(in nsIURI url);
|
1999-10-26 12:13:25 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
%{ C++
|
|
|
|
|
2002-07-24 03:30:04 +04:00
|
|
|
#define NS_CHROMEREGISTRY_CONTRACTID \
|
|
|
|
"@mozilla.org/chrome/chrome-registry;1"
|
2004-03-09 22:59:09 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Chrome registry will notify various caches that all chrome files need
|
|
|
|
* flushing.
|
|
|
|
*/
|
|
|
|
#define NS_CHROME_FLUSH_TOPIC \
|
|
|
|
"chrome-flush-caches"
|
|
|
|
|
1999-10-26 12:13:25 +04:00
|
|
|
%}
|