Chromium Code Reviews| Index: Source/bindings/core/v8/PageScriptDebugServer.cpp |
| diff --git a/Source/bindings/core/v8/PageScriptDebugServer.cpp b/Source/bindings/core/v8/PageScriptDebugServer.cpp |
| index b4b8bfab77a13758072dfc13194def234bee1afb..a9dab7a5aefafa9e1baed75fc8cbe284ee6c752a 100644 |
| --- a/Source/bindings/core/v8/PageScriptDebugServer.cpp |
| +++ b/Source/bindings/core/v8/PageScriptDebugServer.cpp |
| @@ -37,7 +37,7 @@ |
| #include "bindings/core/v8/V8Binding.h" |
| #include "bindings/core/v8/V8ScriptRunner.h" |
| #include "bindings/core/v8/V8Window.h" |
| -#include "bindings/core/v8/V8WindowShell.h" |
| +#include "bindings/core/v8/WindowProxy.h" |
| #include "core/frame/FrameConsole.h" |
| #include "core/frame/FrameHost.h" |
| #include "core/frame/LocalFrame.h" |
| @@ -126,7 +126,7 @@ void PageScriptDebugServer::addListener(ScriptDebugListener* listener, Page* pag |
| ASSERT(!debuggerScript->IsUndefined()); |
| m_listenersMap.set(page, listener); |
| - V8WindowShell* shell = scriptController.existingWindowShell(DOMWrapperWorld::mainWorld()); |
| + WindowProxy* shell = scriptController.existingWindowShell(DOMWrapperWorld::mainWorld()); |
|
jochen (gone - plz use gerrit)
2014/08/11 14:27:31
WindowProxy* existingWindowShell() looks odd. We s
haraken
2014/08/12 01:09:57
Done.
|
| if (!shell || !shell->isContextInitialized()) |
| return; |
| v8::Local<v8::Context> context = shell->context(); |