Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1292)

Unified Diff: sky/engine/bindings/core/v8/ScriptDebugServer.cpp

Issue 727593004: Wire up the Inspector V8 Debugger (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Actually works Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sky/engine/bindings/core/v8/ScriptDebugServer.cpp
diff --git a/sky/engine/bindings/core/v8/ScriptDebugServer.cpp b/sky/engine/bindings/core/v8/ScriptDebugServer.cpp
index 564278c839e8a30ec7d785b851737a934938cffd..b8763549f8b96d255fe16293f91df53596f650bf 100644
--- a/sky/engine/bindings/core/v8/ScriptDebugServer.cpp
+++ b/sky/engine/bindings/core/v8/ScriptDebugServer.cpp
@@ -580,7 +580,7 @@ void ScriptDebugServer::ensureDebuggerScriptCompiled()
v8::HandleScope scope(m_isolate);
v8::Context::Scope contextScope(v8::Debug::GetDebugContext());
- const blink::WebData& debuggerScriptSourceResource = blink::Platform::current()->loadResource("DebuggerScriptSource.js");
+ const blink::WebData& debuggerScriptSourceResource = blink::Platform::current()->loadResource("DebuggerScript.js");
eseidel 2014/11/18 19:38:47 I'm not sure what the Source suffix did. Maybe th
v8::Handle<v8::String> source = v8String(m_isolate, String(debuggerScriptSourceResource.data(), debuggerScriptSourceResource.size()));
v8::Local<v8::Value> value = V8ScriptRunner::compileAndRunInternalScript(source, m_isolate);
ASSERT(!value.IsEmpty());

Powered by Google App Engine
This is Rietveld 408576698