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

/external/webkit/Source/WebCore/bindings/js/
H A DScriptState.h54 typedef JSC::ExecState ScriptState; typedef in namespace:WebCore
59 explicit ScriptStateProtectedPtr(ScriptState*);
61 ScriptState* get() const;
66 ScriptState* mainWorldScriptState(Frame*);
68 ScriptState* scriptStateFromNode(DOMWrapperWorld*, Node*);
69 ScriptState* scriptStateFromPage(DOMWrapperWorld*, Page*);
72 ScriptState* scriptStateFromWorkerContext(WorkerContext*);
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptState.cpp32 #include "ScriptState.h"
49 ScriptState::ScriptState(v8::Handle<v8::Context> context) function in class:WebCore::ScriptState
52 m_context.MakeWeak(this, &ScriptState::weakReferenceCallback);
55 ScriptState::~ScriptState()
61 ScriptState* ScriptState::forContext(v8::Local<v8::Context> context)
73 return static_cast<ScriptState*>(v8::External::Cast(*val)->Value());
75 ScriptState* stat
[all...]
H A DScriptState.h46 class ScriptState { class in namespace:WebCore
47 WTF_MAKE_NONCOPYABLE(ScriptState);
61 static ScriptState* forContext(v8::Local<v8::Context>);
62 static ScriptState* current();
65 ScriptState() { } function in class:WebCore::ScriptState
66 ~ScriptState();
69 friend ScriptState* mainWorldScriptState(Frame*);
70 explicit ScriptState(v8::Handle<v8::Context>);
78 class EmptyScriptState : public ScriptState {
80 EmptyScriptState() : ScriptState() { }
[all...]

Completed in 288 milliseconds