| 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);
|
| }
|
|
|
|
|