Searched refs:debuggerScript (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DWorkerScriptDebugServer.cpp65 v8::Local<v8::Object> debuggerScript = m_debuggerScript.newLocal(m_isolate); local
66 ASSERT(!debuggerScript->IsUndefined());
68 v8::Handle<v8::Function> getScriptsFunction = v8::Local<v8::Function>::Cast(debuggerScript->Get(v8AtomicString(m_isolate, "getWorkerScripts")));
69 v8::Handle<v8::Value> value = V8ScriptRunner::callInternalFunction(getScriptsFunction, debuggerScript, 0, 0, m_isolate);
H A DPageScriptDebugServer.cpp125 v8::Local<v8::Object> debuggerScript = m_debuggerScript.newLocal(m_isolate); local
126 ASSERT(!debuggerScript->IsUndefined());
133 v8::Handle<v8::Function> getScriptsFunction = v8::Local<v8::Function>::Cast(debuggerScript->Get(v8AtomicString(m_isolate, "getScripts")));
135 v8::Handle<v8::Value> value = V8ScriptRunner::callInternalFunction(getScriptsFunction, debuggerScript, WTF_ARRAY_LENGTH(argv), argv, m_isolate);
H A DScriptDebugServer.cpp71 v8::Handle<v8::Object> debuggerScript = m_debuggerScript.newLocal(m_isolate); local
72 v8::Handle<v8::Function> function = v8::Local<v8::Function>::Cast(debuggerScript->Get(v8AtomicString(m_isolate, functionName)));
74 return V8ScriptRunner::callInternalFunction(function, debuggerScript, argc, argv, m_isolate);

Completed in 146 milliseconds