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

Unified Diff: Source/core/html/HTMLDocument.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/core/html/HTMLDocument.h ('k') | Source/core/html/HTMLFormElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLDocument.cpp
diff --git a/Source/core/html/HTMLDocument.cpp b/Source/core/html/HTMLDocument.cpp
index df6cac2823e2a7da83b60ce81473fb3deecd278d..298f8b6e91d893cc00613ce12c93f963b1286539 100644
--- a/Source/core/html/HTMLDocument.cpp
+++ b/Source/core/html/HTMLDocument.cpp
@@ -55,7 +55,7 @@
#include "bindings/v8/ScriptController.h"
#include "core/HTMLNames.h"
-#include "core/frame/DOMWindow.h"
+#include "core/frame/LocalDOMWindow.h"
#include "core/frame/FrameView.h"
#include "core/frame/LocalFrame.h"
#include "core/html/HTMLBodyElement.h"
@@ -272,7 +272,7 @@ bool HTMLDocument::isCaseSensitiveAttribute(const QualifiedName& attributeName)
return !isPossibleHTMLAttr || !htmlCaseInsensitiveAttributesSet->contains(attributeName.localName().impl());
}
-void HTMLDocument::write(DOMWindow* callingWindow, const Vector<String>& text, ExceptionState& exceptionState)
+void HTMLDocument::write(LocalDOMWindow* callingWindow, const Vector<String>& text, ExceptionState& exceptionState)
{
ASSERT(callingWindow);
StringBuilder builder;
@@ -281,7 +281,7 @@ void HTMLDocument::write(DOMWindow* callingWindow, const Vector<String>& text, E
write(builder.toString(), callingWindow->document(), exceptionState);
}
-void HTMLDocument::writeln(DOMWindow* callingWindow, const Vector<String>& text, ExceptionState& exceptionState)
+void HTMLDocument::writeln(LocalDOMWindow* callingWindow, const Vector<String>& text, ExceptionState& exceptionState)
{
ASSERT(callingWindow);
StringBuilder builder;
« no previous file with comments | « Source/core/html/HTMLDocument.h ('k') | Source/core/html/HTMLFormElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698