mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
a4ac396211
--HG-- rename : caps/src/DomainPolicy.cpp => caps/DomainPolicy.cpp rename : caps/include/DomainPolicy.h => caps/DomainPolicy.h rename : caps/idl/nsIDomainPolicy.idl => caps/nsIDomainPolicy.idl rename : caps/idl/nsIPrincipal.idl => caps/nsIPrincipal.idl rename : caps/idl/nsIScriptSecurityManager.idl => caps/nsIScriptSecurityManager.idl rename : caps/src/nsJSPrincipals.cpp => caps/nsJSPrincipals.cpp rename : caps/include/nsJSPrincipals.h => caps/nsJSPrincipals.h rename : caps/src/nsNullPrincipal.cpp => caps/nsNullPrincipal.cpp rename : caps/include/nsNullPrincipal.h => caps/nsNullPrincipal.h rename : caps/src/nsNullPrincipalURI.cpp => caps/nsNullPrincipalURI.cpp rename : caps/src/nsNullPrincipalURI.h => caps/nsNullPrincipalURI.h rename : caps/src/nsPrincipal.cpp => caps/nsPrincipal.cpp rename : caps/include/nsPrincipal.h => caps/nsPrincipal.h rename : caps/src/nsScriptSecurityManager.cpp => caps/nsScriptSecurityManager.cpp rename : caps/include/nsScriptSecurityManager.h => caps/nsScriptSecurityManager.h rename : caps/src/nsSystemPrincipal.cpp => caps/nsSystemPrincipal.cpp rename : caps/include/nsSystemPrincipal.h => caps/nsSystemPrincipal.h
63 lines
2.0 KiB
Plaintext
63 lines
2.0 KiB
Plaintext
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/* 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"
|
|
|
|
interface nsIURI;
|
|
interface nsIDomainSet;
|
|
|
|
/*
|
|
* When a domain policy is instantiated by invoking activateDomainPolicy() on
|
|
* nsIScriptSecurityManager, these domain sets are consulted when each new
|
|
* global is created (they have no effect on already-created globals).
|
|
* If javascript is globally enabled with |javascript.enabled|, the blacklists
|
|
* are consulted. If globally disabled, the whitelists are consulted. Lookups
|
|
* on blacklist and whitelist happen with contains(), and lookups on
|
|
* superBlacklist and superWhitelist happen with containsSuperDomain().
|
|
*
|
|
* When deactivate() is invoked, the domain sets are emptied, and the
|
|
* nsIDomainPolicy ceases to have any effect on the system.
|
|
*/
|
|
[scriptable, builtinclass, uuid(27b10f54-f34b-42b7-8594-4348d3ad7953)]
|
|
interface nsIDomainPolicy : nsISupports
|
|
{
|
|
readonly attribute nsIDomainSet blacklist;
|
|
readonly attribute nsIDomainSet superBlacklist;
|
|
readonly attribute nsIDomainSet whitelist;
|
|
readonly attribute nsIDomainSet superWhitelist;
|
|
|
|
void deactivate();
|
|
};
|
|
|
|
[scriptable, builtinclass, uuid(946a01ff-6525-4007-a2c2-447ebe1875d3)]
|
|
interface nsIDomainSet : nsISupports
|
|
{
|
|
/*
|
|
* Add a domain to the set. No-op if it already exists.
|
|
*/
|
|
void add(in nsIURI aDomain);
|
|
|
|
/*
|
|
* Remove a domain from the set. No-op if it doesn't exist.
|
|
*/
|
|
void remove(in nsIURI aDomain);
|
|
|
|
/*
|
|
* Remove all entries from the set.
|
|
*/
|
|
void clear();
|
|
|
|
/*
|
|
* Returns true if a given domain is in the set.
|
|
*/
|
|
bool contains(in nsIURI aDomain);
|
|
|
|
/*
|
|
* Returns true if a given domain is a subdomain of one of the entries in
|
|
* the set.
|
|
*/
|
|
bool containsSuperDomain(in nsIURI aDomain);
|
|
};
|