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

Unified Diff: third_party/WebKit/Source/core/frame/BarProp.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/BarProp.h ('k') | third_party/WebKit/Source/core/frame/History.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/BarProp.cpp
diff --git a/third_party/WebKit/Source/core/frame/BarProp.cpp b/third_party/WebKit/Source/core/frame/BarProp.cpp
index 6a76bba68f3a550b12972e7e9bc77bd2f6139e66..e403c7ca96d1114d988eb36d8891e091ca2255ca 100644
--- a/third_party/WebKit/Source/core/frame/BarProp.cpp
+++ b/third_party/WebKit/Source/core/frame/BarProp.cpp
@@ -35,10 +35,10 @@
namespace blink {
BarProp::BarProp(LocalFrame* frame, Type type)
- : ContextClient(frame), m_type(type) {}
+ : DOMWindowClient(frame), m_type(type) {}
DEFINE_TRACE(BarProp) {
- ContextClient::trace(visitor);
+ DOMWindowClient::trace(visitor);
}
bool BarProp::visible() const {
« no previous file with comments | « third_party/WebKit/Source/core/frame/BarProp.h ('k') | third_party/WebKit/Source/core/frame/History.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698