HomeSort by relevance Sort by last modified time
    Searched defs:ScriptState (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebCore/bindings/js/
ScriptState.h 54 typedef JSC::ExecState ScriptState;
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/
ScriptState.cpp 32 #include "ScriptState.h"
49 ScriptState::ScriptState(v8::Handle<v8::Context> context)
52 m_context.MakeWeak(this, &ScriptState::weakReferenceCallback);
55 ScriptState::~ScriptState()
61 ScriptState* ScriptState::forContext(v8::Local<v8::Context> context)
70 v8::Handle<v8::String> key = V8HiddenPropertyName::scriptState();
73 return static_cast<ScriptState*>(v8::External::Cast(*val)->Value())
    [all...]
ScriptState.h 46 class ScriptState {
47 WTF_MAKE_NONCOPYABLE(ScriptState);
61 static ScriptState* forContext(v8::Local<v8::Context>);
62 static ScriptState* current();
65 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 2420 milliseconds