mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
1b252b2e3b
but in place. redefined the script security manager in caps and it is now generating codebase principals.
73 lines
2.6 KiB
Plaintext
73 lines
2.6 KiB
Plaintext
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1999 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
|
|
#include "nsISupports.idl"
|
|
#include "nsIPrincipal.idl"
|
|
#include "nsIPrincipalArray.idl"
|
|
#include "nsIPrincipalManager.idl"
|
|
#include "nsIPrivilegeManager.idl"
|
|
#include "nsITarget.idl"
|
|
#include "nsICapsSecurityCallbacks.idl"
|
|
|
|
interface nsIScriptContext;
|
|
|
|
[uuid(7cb78236-47b0-11d3-ba17-0060b0f199a2)]
|
|
interface nsICapsManager : nsISupports {
|
|
%{C++
|
|
/*
|
|
void GetPrincipalManager(out nsIPrincipalManager prinMan);
|
|
|
|
void GetPrivilegeManager(out nsIPrivilegeManager privMan);
|
|
|
|
void CreateCodebasePrincipal([const] in string codebaseURL, out nsIPrincipal prin);
|
|
|
|
NS_IMETHOD
|
|
CreateCertificatePrincipal(const unsigned char * * certChain, PRUint32 * certChainLengths, PRUint32 noOfCerts, nsIPrincipal * * prin) = 0;
|
|
*/
|
|
|
|
%}
|
|
|
|
void GetPermission(in nsIPrincipal prin, in nsITarget target, out short privilegeState);
|
|
|
|
void SetPermission(in nsIPrincipal prin, in nsITarget target, in short privilegeState);
|
|
|
|
void AskPermission(in nsIPrincipal prin, in nsITarget target, out short privilegeState);
|
|
|
|
void Initialize(out boolean result);
|
|
|
|
void InitializeFrameWalker(in nsICapsSecurityCallbacks aInterface);
|
|
|
|
void EnablePrivilege(in nsIScriptContext cx, [const] in string targetName, in long callerDepth, out boolean result);
|
|
|
|
void IsPrivilegeEnabled(in nsIScriptContext cx, [const] in string targetName, in long callerDepth, out boolean result);
|
|
|
|
void RevertPrivilege(in nsIScriptContext cx, [const] in string targetName, in long callerDepth, out boolean result);
|
|
|
|
void DisablePrivilege(in nsIScriptContext cx, [const] in string targetName, in long callerDepth, out boolean result);
|
|
|
|
void IsAllowed(in voidStar annotation, [const] in string target, out boolean result);
|
|
|
|
};
|
|
|
|
%{C++
|
|
#define NS_CCAPSMANAGER_CID \
|
|
{ 0xe6724a60, 0x4b90, 0x11d3, \
|
|
{ 0xba, 0x18, 0x00, 0x60, 0xb0, 0xf1, 0x99, 0xa2 }}
|
|
#define NS_CCAPSMANAGER_PROGID "component://netscape/ccapsmanager"
|
|
#define NS_CCAPSMANAGER_CLASSNAME "ccapsmanager"
|
|
%} |