Searched defs:ScriptState (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptState.cpp6 #include "bindings/core/v8/ScriptState.h"
14 PassRefPtr<ScriptState> ScriptState::create(v8::Handle<v8::Context> context, PassRefPtr<DOMWrapperWorld> world)
16 RefPtr<ScriptState> scriptState = adoptRef(new ScriptState(context, world));
17 // This ref() is for keeping this ScriptState alive as long as the v8::Context is alive.
23 static void weakCallback(const v8::WeakCallbackData<v8::Context, ScriptState>& data)
30 ScriptState::ScriptState(v8::Handle<v8::Context> context, PassRefPtr<DOMWrapperWorld> world) function in class:blink::ScriptState
42 ScriptState
[all...]
H A DScriptState.h21 // ScriptState is created when v8::Context is created.
22 // ScriptState is destroyed when v8::Context is garbage-collected and
23 // all V8 proxy objects that have references to the ScriptState are destructed.
24 class ScriptState : public RefCounted<ScriptState> { class in namespace:blink
25 WTF_MAKE_NONCOPYABLE(ScriptState);
30 explicit Scope(ScriptState* scriptState)
48 static PassRefPtr<ScriptState> create(v8::Handle<v8::Context>, PassRefPtr<DOMWrapperWorld>);
49 virtual ~ScriptState();
51 static ScriptState* curren
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/templates/
H A Dcallback_interface.h19 static {{v8_class}}* create(v8::Handle<v8::Function> callback, ScriptState* scriptState)
30 {{v8_class}}(v8::Handle<v8::Function>, ScriptState*); member in namespace:blink
33 RefPtr<ScriptState> m_scriptState;

Completed in 104 milliseconds