Searched defs:debuggerContext (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DJavaScriptCallFrame.h45 static PassRefPtr<JavaScriptCallFrame> create(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame) argument
47 return adoptRef(new JavaScriptCallFrame(debuggerContext, callFrame));
68 JavaScriptCallFrame(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame);
H A DJavaScriptCallFrame.cpp38 JavaScriptCallFrame::JavaScriptCallFrame(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame) argument
39 : m_debuggerContext(debuggerContext)
54 v8::Handle<v8::Context> debuggerContext = m_debuggerContext.newLocal(m_isolate); local
55 v8::Context::Scope contextScope(debuggerContext);
59 m_caller = JavaScriptCallFrame::create(debuggerContext, v8::Handle<v8::Object>::Cast(callerFrame));
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DWorkerScriptDebugServer.cpp57 v8::Local<v8::Context> debuggerContext = v8::Debug::GetDebugContext(); local
58 v8::Context::Scope contextScope(debuggerContext);
H A DPageScriptDebugServer.cpp86 v8::Local<v8::Context> debuggerContext = v8::Debug::GetDebugContext(); local
87 v8::Context::Scope contextScope(debuggerContext);
H A DScriptDebugServer.cpp145 v8::Local<v8::Context> debuggerContext = v8::Debug::GetDebugContext(); local
146 v8::Context::Scope contextScope(debuggerContext);
149 args->Set(v8::String::NewSymbol("sourceID"), v8String(sourceID, debuggerContext->GetIsolate()));
150 args->Set(v8::String::NewSymbol("lineNumber"), v8::Integer::New(scriptBreakpoint.lineNumber, debuggerContext->GetIsolate()));
151 args->Set(v8::String::NewSymbol("columnNumber"), v8::Integer::New(scriptBreakpoint.columnNumber, debuggerContext->GetIsolate()));
152 args->Set(v8::String::NewSymbol("interstatementLocation"), v8Boolean(interstatementLocation, debuggerContext->GetIsolate()));
153 args->Set(v8::String::NewSymbol("condition"), v8String(scriptBreakpoint.condition, debuggerContext->GetIsolate()));
167 v8::Local<v8::Context> debuggerContext = v8::Debug::GetDebugContext(); local
168 v8::Context::Scope contextScope(debuggerContext);
171 args->Set(v8::String::NewSymbol("breakpointId"), v8String(breakpointId, debuggerContext
181 v8::Local<v8::Context> debuggerContext = v8::Debug::GetDebugContext(); local
192 v8::Local<v8::Context> debuggerContext = v8::Debug::GetDebugContext(); local
311 v8::Handle<v8::Context> debuggerContext = v8::Debug::GetDebugContext(); local
620 v8::Local<v8::Context> debuggerContext = v8::Debug::GetDebugContext(); local
[all...]

Completed in 81 milliseconds