| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 51     Document* document() const override; | 51     Document* document() const override; | 
| 52     StyleMedia* styleMedia() const override; | 52     StyleMedia* styleMedia() const override; | 
| 53     double devicePixelRatio() const override; | 53     double devicePixelRatio() const override; | 
| 54     ApplicationCache* applicationCache() const override; | 54     ApplicationCache* applicationCache() const override; | 
| 55     int orientation() const override; | 55     int orientation() const override; | 
| 56     Console* console() const override; | 56     Console* console() const override; | 
| 57     DOMWindowCSS* css() const override; | 57     DOMWindowCSS* css() const override; | 
| 58     DOMSelection* getSelection() override; | 58     DOMSelection* getSelection() override; | 
| 59     void focus(ExecutionContext* = 0) override; | 59     void focus(ExecutionContext* = 0) override; | 
| 60     void blur() override; | 60     void blur() override; | 
| 61     void close(ExecutionContext* = 0) override; |  | 
| 62     void print() override; | 61     void print() override; | 
| 63     void stop() override; | 62     void stop() override; | 
| 64     void alert(const String& message = String()) override; | 63     void alert(const String& message = String()) override; | 
| 65     bool confirm(const String& message) override; | 64     bool confirm(const String& message) override; | 
| 66     String prompt(const String& message, const String& defaultValue) override; | 65     String prompt(const String& message, const String& defaultValue) override; | 
| 67     bool find(const String&, bool caseSensitive, bool backwards, bool wrap, bool
     wholeWord, bool searchInFrames, bool showDialog) const override; | 66     bool find(const String&, bool caseSensitive, bool backwards, bool wrap, bool
     wholeWord, bool searchInFrames, bool showDialog) const override; | 
| 68     void scrollBy(double x, double y, ScrollBehavior = ScrollBehaviorAuto) const
     override; | 67     void scrollBy(double x, double y, ScrollBehavior = ScrollBehaviorAuto) const
     override; | 
| 69     void scrollBy(const ScrollToOptions&) const override; | 68     void scrollBy(const ScrollToOptions&) const override; | 
| 70     void scrollTo(double x, double y) const override; | 69     void scrollTo(double x, double y) const override; | 
| 71     void scrollTo(const ScrollToOptions&) const override; | 70     void scrollTo(const ScrollToOptions&) const override; | 
| (...skipping 10 matching lines...) Expand all  Loading... | 
| 82 | 81 | 
| 83 private: | 82 private: | 
| 84     explicit RemoteDOMWindow(RemoteFrame&); | 83     explicit RemoteDOMWindow(RemoteFrame&); | 
| 85 | 84 | 
| 86     RawPtrWillBeMember<RemoteFrame> m_frame; | 85     RawPtrWillBeMember<RemoteFrame> m_frame; | 
| 87 }; | 86 }; | 
| 88 | 87 | 
| 89 } // namespace blink | 88 } // namespace blink | 
| 90 | 89 | 
| 91 #endif // DOMWindow_h | 90 #endif // DOMWindow_h | 
| OLD | NEW | 
|---|