gecko/js/xpconnect/idl/nsIXPCSecurityManager.idl
Bobby Holley 6dba8699cf Bug 913734 - Stop storing security policies on XPCWrappedNativeProtos. r=mrbkap
This is just a cache, so we can safely remove it without impacting correctness.
The rest of this mechanism goes away in subsequent patches.
2013-12-13 19:15:43 -08:00

60 lines
1.9 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(852e1ea8-1c3f-49e1-b57c-c0f525a167d3)]
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);
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);
};