gecko/js/xpconnect/idl/nsIXPCSecurityManager.idl
Nicholas Nethercote aa5919539d Bug 902332 - Replace JS_{FALSE,TRUE} with {false,true} almost everywhere. r=luke,bz.
--HG--
extra : rebase_source : 25f4de1bfae830b0af6407d260a70b787ab1dc9b
2013-08-06 23:59:54 -07:00

62 lines
2.0 KiB
Plaintext

/* -*- Mode: C; tab-width: 8; 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"
[ptr] native nsAXPCNativeCallContextPtr(nsAXPCNativeCallContext);
%{ C++
#include "jspubtd.h"
class nsAXPCNativeCallContext;
%}
interface nsIClassInfo;
[ptr] native JSContextPtr(JSContext);
[ptr] native JSObjectPtr(JSObject);
[ptr] native JSStackFramePtr(JSStackFrame);
[uuid(31431440-f1ce-11d2-985a-006008962422)]
interface nsIXPCSecurityManager : nsISupports
{
/**
* For each of these hooks returning NS_OK means 'let the action continue'.
* Returning an error code means 'veto the action'. XPConnect will return
* false to the js engine if the action is vetoed. The implementor of this
* interface is responsible for setting a JS exception into the JSContext
* if that is appropriate.
*/
void CanCreateWrapper(in JSContextPtr aJSContext,
in nsIIDRef aIID,
in nsISupports aObj,
in nsIClassInfo aClassInfo,
inout voidPtr aPolicy);
void CanCreateInstance(in JSContextPtr aJSContext,
in nsCIDRef aCID);
void CanGetService(in JSContextPtr aJSContext,
in nsCIDRef aCID);
/*
* Used for aAction below
*/
const uint32_t ACCESS_CALL_METHOD = 0;
const uint32_t ACCESS_GET_PROPERTY = 1;
const uint32_t ACCESS_SET_PROPERTY = 2;
void CanAccess(in uint32_t aAction,
in nsAXPCNativeCallContextPtr aCallContext,
in JSContextPtr aJSContext,
in JSObjectPtr aJSObject,
in nsISupports aObj,
in nsIClassInfo aClassInfo,
in jsid aName,
inout voidPtr aPolicy);
};