Index: Source/bindings/v8/DOMWrapperWorld.cpp |
diff --git a/Source/bindings/v8/DOMWrapperWorld.cpp b/Source/bindings/v8/DOMWrapperWorld.cpp |
index 7b5f2fd86fd5d9c2729531b6664cf9ddf37280d3..9127964196ee3139c0b2b7cc61117514ac9700d7 100644 |
--- a/Source/bindings/v8/DOMWrapperWorld.cpp |
+++ b/Source/bindings/v8/DOMWrapperWorld.cpp |
@@ -31,7 +31,7 @@ |
#include "config.h" |
#include "bindings/v8/DOMWrapperWorld.h" |
-#include "V8DOMWindow.h" |
+#include "V8Window.h" |
#include "bindings/v8/DOMDataStore.h" |
#include "bindings/v8/V8Binding.h" |
#include "bindings/v8/V8DOMActivityLogger.h" |
@@ -69,7 +69,7 @@ DOMWrapperWorld* DOMWrapperWorld::current() |
{ |
ASSERT(v8::Context::InContext()); |
v8::Handle<v8::Context> context = v8::Context::GetCurrent(); |
- if (!V8DOMWrapper::isWrapperOfType(toInnerGlobalObject(context), &V8DOMWindow::info)) |
+ if (!V8DOMWrapper::isWrapperOfType(toInnerGlobalObject(context), &V8Window::info)) |
return 0; |
ASSERT(isMainThread()); |
if (DOMWrapperWorld* world = isolatedWorld(context)) |
@@ -96,7 +96,7 @@ bool DOMWrapperWorld::contextHasCorrectPrototype(v8::Handle<v8::Context> context |
ASSERT(isMainThread()); |
if (initializingWindow) |
return true; |
- return V8DOMWrapper::isWrapperOfType(toInnerGlobalObject(context), &V8DOMWindow::info); |
+ return V8DOMWrapper::isWrapperOfType(toInnerGlobalObject(context), &V8Window::info); |
} |
void DOMWrapperWorld::setIsolatedWorldField(v8::Handle<v8::Context> context) |