OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef RemoteDOMWindow_h | 5 #ifndef RemoteDOMWindow_h |
6 #define RemoteDOMWindow_h | 6 #define RemoteDOMWindow_h |
7 | 7 |
8 #include "core/frame/DOMWindow.h" | 8 #include "core/frame/DOMWindow.h" |
9 #include "core/frame/RemoteFrame.h" | 9 #include "core/frame/RemoteFrame.h" |
10 | 10 |
(...skipping 16 matching lines...) Expand all Loading... |
27 RemoteFrame* frame() const override; | 27 RemoteFrame* frame() const override; |
28 Screen* screen() const override; | 28 Screen* screen() const override; |
29 History* history() const override; | 29 History* history() const override; |
30 BarProp* locationbar() const override; | 30 BarProp* locationbar() const override; |
31 BarProp* menubar() const override; | 31 BarProp* menubar() const override; |
32 BarProp* personalbar() const override; | 32 BarProp* personalbar() const override; |
33 BarProp* scrollbars() const override; | 33 BarProp* scrollbars() const override; |
34 BarProp* statusbar() const override; | 34 BarProp* statusbar() const override; |
35 BarProp* toolbar() const override; | 35 BarProp* toolbar() const override; |
36 Navigator* navigator() const override; | 36 Navigator* navigator() const override; |
37 Location* location() const override; | |
38 bool offscreenBuffering() const override; | 37 bool offscreenBuffering() const override; |
39 int outerHeight() const override; | 38 int outerHeight() const override; |
40 int outerWidth() const override; | 39 int outerWidth() const override; |
41 int innerHeight() const override; | 40 int innerHeight() const override; |
42 int innerWidth() const override; | 41 int innerWidth() const override; |
43 int screenX() const override; | 42 int screenX() const override; |
44 int screenY() const override; | 43 int screenY() const override; |
45 double scrollX() const override; | 44 double scrollX() const override; |
46 double scrollY() const override; | 45 double scrollY() const override; |
47 const AtomicString& name() const override; | 46 const AtomicString& name() const override; |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 | 87 |
89 private: | 88 private: |
90 explicit RemoteDOMWindow(RemoteFrame&); | 89 explicit RemoteDOMWindow(RemoteFrame&); |
91 | 90 |
92 RawPtrWillBeMember<RemoteFrame> m_frame; | 91 RawPtrWillBeMember<RemoteFrame> m_frame; |
93 }; | 92 }; |
94 | 93 |
95 } // namespace blink | 94 } // namespace blink |
96 | 95 |
97 #endif // DOMWindow_h | 96 #endif // DOMWindow_h |
OLD | NEW |