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

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

Issue 2626423003: Use DOMWindowClient for objects owned by LocalDOMWindow (Closed)
Patch Set: Created 3 years, 11 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 | « 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 5e7305238896f149db31e235ac414ad2462330ac..a1dd7e7bf88eb08eb0807f1148009002701d23ea 100644
--- a/third_party/WebKit/Source/core/frame/History.cpp
+++ b/third_party/WebKit/Source/core/frame/History.cpp
@@ -57,10 +57,10 @@ bool equalIgnoringQueryAndFragment(const KURL& a, const KURL& b) {
} // namespace
History::History(LocalFrame* frame)
- : ContextClient(frame), m_lastStateObjectRequested(nullptr) {}
+ : DOMWindowClient(frame), m_lastStateObjectRequested(nullptr) {}
DEFINE_TRACE(History) {
- ContextClient::trace(visitor);
+ DOMWindowClient::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