mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
49 lines
1.6 KiB
C++
49 lines
1.6 KiB
C++
/* 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/. */
|
|
|
|
#ifndef nsIScriptRuntime_h__
|
|
#define nsIScriptRuntime_h__
|
|
|
|
#include "nsIScriptContext.h"
|
|
|
|
#define NS_ISCRIPTRUNTIME_IID \
|
|
{ 0x41ded433, 0x83a5, 0x43fb, \
|
|
{ 0x85, 0xf4, 0x33, 0xba, 0x8f, 0xd1, 0x3f, 0xdc } }
|
|
|
|
/**
|
|
* A singleton language environment for an application. Responsible for
|
|
* initializing and cleaning up the global language environment, and a factory
|
|
* for language contexts
|
|
*/
|
|
class nsIScriptRuntime : public nsISupports
|
|
{
|
|
public:
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISCRIPTRUNTIME_IID)
|
|
|
|
/* Factory for a new context for this language */
|
|
virtual already_AddRefed<nsIScriptContext>
|
|
CreateContext(bool aGCOnDestruction,
|
|
nsIScriptGlobalObject* aGlobalObject) = 0;
|
|
|
|
/* Memory managment for script objects returned from various
|
|
* nsIScriptContext methods. These are identical to those in
|
|
* nsIScriptContext, but are useful when a script context is not known.
|
|
*/
|
|
virtual nsresult DropScriptObject(void *object) = 0;
|
|
virtual nsresult HoldScriptObject(void *object) = 0;
|
|
};
|
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsIScriptRuntime, NS_ISCRIPTRUNTIME_IID)
|
|
|
|
/* helper functions */
|
|
nsresult NS_GetJSRuntime(nsIScriptRuntime** aLanguage);
|
|
|
|
nsresult NS_GetScriptRuntime(const nsAString &aLanguageName,
|
|
nsIScriptRuntime **aRuntime);
|
|
|
|
nsresult NS_GetScriptRuntimeByID(uint32_t aLanguageID,
|
|
nsIScriptRuntime **aRuntime);
|
|
|
|
#endif // nsIScriptRuntime_h__
|