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

Unified Diff: third_party/WebKit/Source/core/frame/Screen.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/Screen.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/frame/Screen.cpp
diff --git a/third_party/WebKit/Source/core/frame/Screen.cpp b/third_party/WebKit/Source/core/frame/Screen.cpp
index c945d6ce98681e74edc6dc8b6721acebc0e3fd6a..0abf20f12bc9a2989905bd7a37f6a4ae9d053609 100644
--- a/third_party/WebKit/Source/core/frame/Screen.cpp
+++ b/third_party/WebKit/Source/core/frame/Screen.cpp
@@ -38,7 +38,7 @@
namespace blink {
-Screen::Screen(LocalFrame* frame) : ContextClient(frame) {}
+Screen::Screen(LocalFrame* frame) : DOMWindowClient(frame) {}
int Screen::height() const {
if (!frame())
@@ -135,7 +135,7 @@ int Screen::availWidth() const {
}
DEFINE_TRACE(Screen) {
- ContextClient::trace(visitor);
+ DOMWindowClient::trace(visitor);
Supplementable<Screen>::trace(visitor);
}
« no previous file with comments | « third_party/WebKit/Source/core/frame/Screen.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698