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

Unified Diff: Source/core/frame/LocalDOMWindow.cpp

Issue 700803002: bindings: Window must be LocalDOMWindow by definition. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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/core/frame/LocalDOMWindow.h ('k') | Source/core/frame/Window.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/LocalDOMWindow.cpp
diff --git a/Source/core/frame/LocalDOMWindow.cpp b/Source/core/frame/LocalDOMWindow.cpp
index 49b4499e49c13c678d9234990b740ba32c13130e..7ee9063c803257a93a00d294f0d933139efea4ec 100644
--- a/Source/core/frame/LocalDOMWindow.cpp
+++ b/Source/core/frame/LocalDOMWindow.cpp
@@ -1296,7 +1296,7 @@ void LocalDOMWindow::setDefaultStatus(const String& string)
host->chrome().setStatusbarText(frame(), m_defaultStatus);
}
-DOMWindow* LocalDOMWindow::self() const
+LocalDOMWindow* LocalDOMWindow::self() const
{
if (!frame())
return 0;
@@ -1304,7 +1304,7 @@ DOMWindow* LocalDOMWindow::self() const
return frame()->domWindow();
}
-DOMWindow* LocalDOMWindow::opener() const
+LocalDOMWindow* LocalDOMWindow::opener() const
{
if (!frame())
return 0;
@@ -1316,7 +1316,7 @@ DOMWindow* LocalDOMWindow::opener() const
return opener->domWindow();
}
-DOMWindow* LocalDOMWindow::parent() const
+LocalDOMWindow* LocalDOMWindow::parent() const
{
if (!frame())
return 0;
@@ -1328,7 +1328,7 @@ DOMWindow* LocalDOMWindow::parent() const
return frame()->domWindow();
}
-DOMWindow* LocalDOMWindow::top() const
+LocalDOMWindow* LocalDOMWindow::top() const
{
if (!frame())
return 0;
« no previous file with comments | « Source/core/frame/LocalDOMWindow.h ('k') | Source/core/frame/Window.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698