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
|
|
|
|
|
|
|
#ifndef nsIScriptRuntime_h__
|
|
|
|
#define nsIScriptRuntime_h__
|
|
|
|
|
|
|
|
#include "nsIScriptContext.h"
|
|
|
|
|
|
|
|
#define NS_ISCRIPTRUNTIME_IID \
|
2013-03-19 10:20:22 -07:00
|
|
|
{ 0x86c6b54a, 0xf067, 0x4878, \
|
|
|
|
{ 0xb2, 0x77, 0x4e, 0xee, 0x95, 0xda, 0x8f, 0x76 } }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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 */
|
2012-11-04 01:04:04 -07:00
|
|
|
virtual already_AddRefed<nsIScriptContext>
|
2012-11-04 01:05:23 -07:00
|
|
|
CreateContext(bool aGCOnDestruction,
|
|
|
|
nsIScriptGlobalObject* aGlobalObject) = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsIScriptRuntime, NS_ISCRIPTRUNTIME_IID)
|
|
|
|
|
|
|
|
/* helper functions */
|
2012-04-24 15:31:28 -07:00
|
|
|
nsresult NS_GetJSRuntime(nsIScriptRuntime** aLanguage);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult NS_GetScriptRuntime(const nsAString &aLanguageName,
|
|
|
|
nsIScriptRuntime **aRuntime);
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult NS_GetScriptRuntimeByID(uint32_t aLanguageID,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIScriptRuntime **aRuntime);
|
|
|
|
|
|
|
|
#endif // nsIScriptRuntime_h__
|