mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 696663 - Make nsIJSEventListener::mScopeObject a JSObject; r=smaug
This commit is contained in:
parent
272454bc66
commit
8d02f473c8
@ -392,7 +392,7 @@ nsEventListenerManager::FindJSEventListener(PRUint32 aEventType,
|
||||
|
||||
nsresult
|
||||
nsEventListenerManager::SetJSEventListener(nsIScriptContext *aContext,
|
||||
void *aScopeObject,
|
||||
JSObject* aScopeObject,
|
||||
nsIAtom* aName,
|
||||
JSObject *aHandler,
|
||||
bool aPermitUntrustedEvents,
|
||||
|
@ -264,7 +264,7 @@ protected:
|
||||
* any, is returned in aListenerStruct.
|
||||
*/
|
||||
nsresult SetJSEventListener(nsIScriptContext *aContext,
|
||||
void *aScopeGlobal,
|
||||
JSObject* aScopeGlobal,
|
||||
nsIAtom* aName,
|
||||
JSObject *aHandler,
|
||||
bool aPermitUntrustedEvents,
|
||||
|
@ -46,8 +46,8 @@ class nsIScriptObjectOwner;
|
||||
class nsIAtom;
|
||||
|
||||
#define NS_IJSEVENTLISTENER_IID \
|
||||
{ 0x2135cf56, 0x5954, 0x40fa, \
|
||||
{ 0x80, 0xb8, 0xd7, 0xd8, 0xa9, 0x22, 0xa2, 0x8a } }
|
||||
{ 0xafc5d047, 0xdb6b, 0x4076, \
|
||||
{ 0xb3, 0xfa, 0x57, 0x96, 0x1e, 0x21, 0x48, 0x42 } }
|
||||
|
||||
// Implemented by script event listeners. Used to retrieve the
|
||||
// script object corresponding to the event target and the handler itself.
|
||||
@ -58,7 +58,7 @@ class nsIJSEventListener : public nsIDOMEventListener
|
||||
public:
|
||||
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IJSEVENTLISTENER_IID)
|
||||
|
||||
nsIJSEventListener(nsIScriptContext *aContext, void *aScopeObject,
|
||||
nsIJSEventListener(nsIScriptContext* aContext, JSObject* aScopeObject,
|
||||
nsISupports *aTarget, JSObject *aHandler)
|
||||
: mContext(aContext), mScopeObject(aScopeObject),
|
||||
mTarget(do_QueryInterface(aTarget)), mHandler(aHandler)
|
||||
@ -75,7 +75,7 @@ public:
|
||||
return mTarget;
|
||||
}
|
||||
|
||||
void *GetEventScope() const
|
||||
JSObject* GetEventScope() const
|
||||
{
|
||||
return mScopeObject;
|
||||
}
|
||||
@ -96,7 +96,7 @@ protected:
|
||||
{
|
||||
}
|
||||
nsCOMPtr<nsIScriptContext> mContext;
|
||||
void *mScopeObject;
|
||||
JSObject* mScopeObject;
|
||||
nsCOMPtr<nsISupports> mTarget;
|
||||
JSObject *mHandler;
|
||||
};
|
||||
@ -105,7 +105,7 @@ NS_DEFINE_STATIC_IID_ACCESSOR(nsIJSEventListener, NS_IJSEVENTLISTENER_IID)
|
||||
|
||||
/* factory function. aHandler must already be bound to aTarget */
|
||||
nsresult NS_NewJSEventListener(nsIScriptContext *aContext,
|
||||
void *aScopeObject, nsISupports *aTarget,
|
||||
JSObject* aScopeObject, nsISupports* aTarget,
|
||||
nsIAtom* aType, JSObject* aHandler,
|
||||
nsIDOMEventListener **aReturn);
|
||||
|
||||
|
@ -73,7 +73,7 @@ static EventListenerCounter sEventListenerCounter;
|
||||
* nsJSEventListener implementation
|
||||
*/
|
||||
nsJSEventListener::nsJSEventListener(nsIScriptContext *aContext,
|
||||
void *aScopeObject,
|
||||
JSObject* aScopeObject,
|
||||
nsISupports *aTarget,
|
||||
nsIAtom* aType,
|
||||
JSObject *aHandler)
|
||||
@ -272,7 +272,7 @@ nsJSEventListener::SetHandler(JSObject *aHandler)
|
||||
*/
|
||||
|
||||
nsresult
|
||||
NS_NewJSEventListener(nsIScriptContext *aContext, void *aScopeObject,
|
||||
NS_NewJSEventListener(nsIScriptContext* aContext, JSObject* aScopeObject,
|
||||
nsISupports*aTarget, nsIAtom* aEventType,
|
||||
JSObject* aHandler, nsIDOMEventListener ** aReturn)
|
||||
{
|
||||
|
@ -52,7 +52,7 @@
|
||||
class nsJSEventListener : public nsIJSEventListener
|
||||
{
|
||||
public:
|
||||
nsJSEventListener(nsIScriptContext *aContext, void *aScopeObject,
|
||||
nsJSEventListener(nsIScriptContext* aContext, JSObject* aScopeObject,
|
||||
nsISupports* aTarget, nsIAtom* aType, JSObject* aHandler);
|
||||
virtual ~nsJSEventListener();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user