2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04: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/. */
|
1998-04-14 00:24:54 +04:00
|
|
|
|
|
|
|
#ifndef nsIScriptContext_h__
|
|
|
|
#define nsIScriptContext_h__
|
|
|
|
|
|
|
|
#include "nscore.h"
|
2017-12-07 03:52:51 +03:00
|
|
|
#include "nsString.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
#include "nsISupports.h"
|
2003-06-25 01:43:01 +04:00
|
|
|
#include "nsCOMPtr.h"
|
2011-09-18 13:22:17 +04:00
|
|
|
#include "jspubtd.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-06-23 22:43:06 +04:00
|
|
|
class nsIScriptGlobalObject;
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2018-01-05 01:32:15 +03:00
|
|
|
// Must be kept in sync with xpcom/rust/xpcom/src/interfaces/nonidl.rs
|
1998-04-14 00:24:54 +04:00
|
|
|
#define NS_ISCRIPTCONTEXT_IID \
|
2018-11-30 13:46:48 +03:00
|
|
|
{ \
|
2016-06-02 17:34:39 +03:00
|
|
|
0x54cbe9cf, 0x7282, 0x421a, { \
|
|
|
|
0x91, 0x6f, 0xd0, 0x70, 0x73, 0xde, 0xb8, 0xc0 \
|
|
|
|
} \
|
|
|
|
}
|
2008-02-16 08:13:16 +03:00
|
|
|
|
2013-08-16 01:14:43 +04:00
|
|
|
class nsIOffThreadScriptReceiver;
|
|
|
|
|
1998-04-15 22:55:21 +04:00
|
|
|
/**
|
|
|
|
* It is used by the application to initialize a runtime and run scripts.
|
|
|
|
* A script runtime would implement this interface.
|
|
|
|
*/
|
2013-05-07 03:53:10 +04:00
|
|
|
class nsIScriptContext : public nsISupports {
|
1998-04-14 00:24:54 +04:00
|
|
|
public:
|
2005-11-11 17:36:26 +03:00
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISCRIPTCONTEXT_IID)
|
1999-02-04 21:29:36 +03:00
|
|
|
|
1998-04-15 22:55:21 +04:00
|
|
|
/**
|
|
|
|
* Return the global object.
|
|
|
|
*
|
|
|
|
**/
|
2004-02-10 01:48:53 +03:00
|
|
|
virtual nsIScriptGlobalObject* GetGlobalObject() = 0;
|
1998-04-15 22:55:21 +04:00
|
|
|
|
2006-06-13 07:07:47 +04:00
|
|
|
// SetProperty is suspect and jst believes should not be needed. Currenly
|
|
|
|
// used only for "arguments".
|
2013-05-12 09:17:42 +04:00
|
|
|
virtual nsresult SetProperty(JS::Handle<JSObject*> aTarget,
|
|
|
|
const char* aPropName, nsISupports* aVal) = 0;
|
2014-12-16 19:02:27 +03:00
|
|
|
/**
|
2013-01-15 15:46:35 +04:00
|
|
|
* Called to set/get information if the script context is
|
|
|
|
* currently processing a script tag
|
|
|
|
*/
|
|
|
|
virtual bool GetProcessingScriptTag() = 0;
|
|
|
|
virtual void SetProcessingScriptTag(bool aResult) = 0;
|
2001-10-19 08:13:37 +04:00
|
|
|
|
2005-07-31 00:57:07 +04:00
|
|
|
/**
|
2019-06-14 21:40:25 +03:00
|
|
|
* Initialize DOM classes on aGlobalObj.
|
2005-07-31 00:57:07 +04:00
|
|
|
*/
|
2013-05-12 09:17:42 +04:00
|
|
|
virtual nsresult InitClasses(JS::Handle<JSObject*> aGlobalObj) = 0;
|
2006-06-13 07:07:47 +04:00
|
|
|
|
2013-09-05 01:06:55 +04:00
|
|
|
/**
|
|
|
|
* Access the Window Proxy. The setter should only be called by
|
|
|
|
* nsGlobalWindow.
|
|
|
|
*/
|
|
|
|
virtual void SetWindowProxy(JS::Handle<JSObject*> aWindowProxy) = 0;
|
|
|
|
virtual JSObject* GetWindowProxy() = 0;
|
1998-04-14 00:24:54 +04:00
|
|
|
};
|
|
|
|
|
2005-11-11 17:36:26 +03:00
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsIScriptContext, NS_ISCRIPTCONTEXT_IID)
|
|
|
|
|
2013-08-16 01:14:43 +04:00
|
|
|
#define NS_IOFFTHREADSCRIPTRECEIVER_IID \
|
2018-11-30 13:46:48 +03:00
|
|
|
{ \
|
2013-08-16 01:14:43 +04:00
|
|
|
0x3a980010, 0x878d, 0x46a9, { \
|
|
|
|
0x93, 0xad, 0xbc, 0xfd, 0xd3, 0x8e, 0xa0, 0xc2 \
|
|
|
|
} \
|
2018-11-30 13:46:48 +03:00
|
|
|
}
|
2013-08-16 01:14:43 +04:00
|
|
|
|
|
|
|
class nsIOffThreadScriptReceiver : public nsISupports {
|
|
|
|
public:
|
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IOFFTHREADSCRIPTRECEIVER_IID)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notify this object that a previous CompileScript call specifying this as
|
|
|
|
* aOffThreadReceiver has completed. The script being passed in must be
|
|
|
|
* rooted before any call which could trigger GC.
|
|
|
|
*/
|
|
|
|
NS_IMETHOD OnScriptCompileComplete(JSScript* aScript, nsresult aStatus) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsIOffThreadScriptReceiver,
|
|
|
|
NS_IOFFTHREADSCRIPTRECEIVER_IID)
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
#endif // nsIScriptContext_h__
|