Chromium Code Reviews| 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()); |