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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 String status() const override; | 48 String status() const override; |
49 void setStatus(const String&) override; | 49 void setStatus(const String&) override; |
50 String defaultStatus() const override; | 50 String defaultStatus() const override; |
51 void setDefaultStatus(const String&) override; | 51 void setDefaultStatus(const String&) override; |
52 Document* document() const override; | 52 Document* document() const override; |
53 StyleMedia* styleMedia() const override; | 53 StyleMedia* styleMedia() const override; |
54 double devicePixelRatio() const override; | 54 double devicePixelRatio() const override; |
55 ApplicationCache* applicationCache() const override; | 55 ApplicationCache* applicationCache() const override; |
56 int orientation() const override; | 56 int orientation() const override; |
57 Console* console() const override; | 57 Console* console() const override; |
58 Performance* performance() const override; | |
59 DOMWindowCSS* css() const override; | 58 DOMWindowCSS* css() const override; |
60 DOMSelection* getSelection() override; | 59 DOMSelection* getSelection() override; |
61 void focus(ExecutionContext* = 0) override; | 60 void focus(ExecutionContext* = 0) override; |
62 void blur() override; | 61 void blur() override; |
63 void close(ExecutionContext* = 0) override; | 62 void close(ExecutionContext* = 0) override; |
64 void print() override; | 63 void print() override; |
65 void stop() override; | 64 void stop() override; |
66 void alert(const String& message = String()) override; | 65 void alert(const String& message = String()) override; |
67 bool confirm(const String& message) override; | 66 bool confirm(const String& message) override; |
68 String prompt(const String& message, const String& defaultValue) override; | 67 String prompt(const String& message, const String& defaultValue) override; |
(...skipping 18 matching lines...) Expand all Loading... |
87 | 86 |
88 private: | 87 private: |
89 explicit RemoteDOMWindow(RemoteFrame&); | 88 explicit RemoteDOMWindow(RemoteFrame&); |
90 | 89 |
91 RawPtrWillBeMember<RemoteFrame> m_frame; | 90 RawPtrWillBeMember<RemoteFrame> m_frame; |
92 }; | 91 }; |
93 | 92 |
94 } // namespace blink | 93 } // namespace blink |
95 | 94 |
96 #endif // DOMWindow_h | 95 #endif // DOMWindow_h |
OLD | NEW |