2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
2008-01-15 07:50:57 -08:00
|
|
|
[ptr] native nsAXPCNativeCallContextPtr(nsAXPCNativeCallContext);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
%{ C++
|
|
|
|
#include "jspubtd.h"
|
2008-01-15 07:50:57 -08:00
|
|
|
|
|
|
|
class nsAXPCNativeCallContext;
|
2007-03-22 10:30:00 -07:00
|
|
|
%}
|
|
|
|
|
|
|
|
interface nsIClassInfo;
|
|
|
|
|
|
|
|
[ptr] native JSContextPtr(JSContext);
|
|
|
|
[ptr] native JSObjectPtr(JSObject);
|
2008-10-22 13:15:22 -07:00
|
|
|
[ptr] native JSStackFramePtr(JSStackFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-12-13 19:15:43 -08:00
|
|
|
[uuid(852e1ea8-1c3f-49e1-b57c-c0f525a167d3)]
|
2007-03-22 10:30:00 -07:00
|
|
|
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
|
2013-08-06 23:59:54 -07:00
|
|
|
* false to the js engine if the action is vetoed. The implementor of this
|
2007-03-22 10:30:00 -07:00
|
|
|
* 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,
|
2013-12-13 19:15:43 -08:00
|
|
|
in nsIClassInfo aClassInfo);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
void CanCreateInstance(in JSContextPtr aJSContext,
|
|
|
|
in nsCIDRef aCID);
|
|
|
|
|
|
|
|
void CanGetService(in JSContextPtr aJSContext,
|
|
|
|
in nsCIDRef aCID);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Used for aAction below
|
|
|
|
*/
|
2012-08-22 08:56:38 -07:00
|
|
|
const uint32_t ACCESS_CALL_METHOD = 0;
|
|
|
|
const uint32_t ACCESS_GET_PROPERTY = 1;
|
|
|
|
const uint32_t ACCESS_SET_PROPERTY = 2;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
void CanAccess(in uint32_t aAction,
|
2008-01-15 07:50:57 -08:00
|
|
|
in nsAXPCNativeCallContextPtr aCallContext,
|
2007-03-22 10:30:00 -07:00
|
|
|
in JSContextPtr aJSContext,
|
|
|
|
in JSObjectPtr aJSObject,
|
|
|
|
in nsISupports aObj,
|
|
|
|
in nsIClassInfo aClassInfo,
|
2013-12-13 19:15:43 -08:00
|
|
|
in jsid aName);
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|