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

Unified Diff: third_party/WebKit/Source/core/frame/History.cpp

Issue 2593983002: Replace DOMWindowProperty in core/ with ContextClient (Closed)
Patch Set: temp Created 4 years 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 | « third_party/WebKit/Source/core/frame/History.h ('k') | third_party/WebKit/Source/core/frame/Screen.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/frame/History.cpp
diff --git a/third_party/WebKit/Source/core/frame/History.cpp b/third_party/WebKit/Source/core/frame/History.cpp
index 56494e97c0edd4297d7d17e110f8ef91d0747c10..d6f76e68d4dfdabdded50b82bdfa00d8c79585fa 100644
--- a/third_party/WebKit/Source/core/frame/History.cpp
+++ b/third_party/WebKit/Source/core/frame/History.cpp
@@ -56,10 +56,10 @@ bool equalIgnoringQueryAndFragment(const KURL& a, const KURL& b) {
} // namespace
History::History(LocalFrame* frame)
- : DOMWindowProperty(frame), m_lastStateObjectRequested(nullptr) {}
+ : ContextClient(frame), m_lastStateObjectRequested(nullptr) {}
DEFINE_TRACE(History) {
- DOMWindowProperty::trace(visitor);
+ ContextClient::trace(visitor);
}
unsigned History::length() const {
« no previous file with comments | « third_party/WebKit/Source/core/frame/History.h ('k') | third_party/WebKit/Source/core/frame/Screen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698