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

Unified Diff: Source/bindings/core/v8/PageScriptDebugServer.cpp

Issue 451013003: Rename V8WindowShell to WindowProxy (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 months 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: 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();

Powered by Google App Engine
This is Rietveld 408576698