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

Unified Diff: Source/web/WebBindings.cpp

Issue 334283004: Rename DOMWindow to LocalDOMWindow (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 6 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
« no previous file with comments | « Source/web/InspectorClientImpl.cpp ('k') | Source/web/WebDOMActivityLogger.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebBindings.cpp
diff --git a/Source/web/WebBindings.cpp b/Source/web/WebBindings.cpp
index 73966839e3ce2fd97c0f062224b5856beec8a6e0..a4b342e382f54a3395ebb34d82bf9c47df2d9a07 100644
--- a/Source/web/WebBindings.cpp
+++ b/Source/web/WebBindings.cpp
@@ -43,7 +43,7 @@
#include "bindings/v8/npruntime_impl.h"
#include "bindings/v8/npruntime_priv.h"
#include "core/dom/Range.h"
-#include "core/frame/DOMWindow.h"
+#include "core/frame/LocalDOMWindow.h"
#include "core/frame/LocalFrame.h"
#include "public/platform/WebArrayBuffer.h"
#include "public/web/WebArrayBufferView.h"
@@ -324,7 +324,7 @@ static NPObject* makeIntArrayImpl(const WebVector<int>& data, v8::Isolate* isola
for (size_t i = 0; i < data.size(); ++i)
result->Set(i, v8::Number::New(isolate, data[i]));
- DOMWindow* window = currentDOMWindow(isolate);
+ LocalDOMWindow* window = currentDOMWindow(isolate);
return npCreateV8ScriptObject(0, result, window, isolate);
}
@@ -335,7 +335,7 @@ static NPObject* makeStringArrayImpl(const WebVector<WebString>& data, v8::Isola
for (size_t i = 0; i < data.size(); ++i)
result->Set(i, v8String(isolate, data[i]));
- DOMWindow* window = currentDOMWindow(isolate);
+ LocalDOMWindow* window = currentDOMWindow(isolate);
return npCreateV8ScriptObject(0, result, window, isolate);
}
« no previous file with comments | « Source/web/InspectorClientImpl.cpp ('k') | Source/web/WebDOMActivityLogger.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698