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

Side by Side Diff: Source/core/frame/RemoteDOMWindow.h

Issue 886463010: Make arguments to window.{move,resize}{To,By} non-optional (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebased Created 5 years, 6 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 unified diff | Download patch
OLDNEW
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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 void print() override; 62 void print() override;
63 void stop() override; 63 void stop() override;
64 void alert(const String& message = String()) override; 64 void alert(const String& message = String()) override;
65 bool confirm(const String& message) override; 65 bool confirm(const String& message) override;
66 String prompt(const String& message, const String& defaultValue) override; 66 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; 67 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; 68 void scrollBy(double x, double y, ScrollBehavior = ScrollBehaviorAuto) const override;
69 void scrollBy(const ScrollToOptions&) const override; 69 void scrollBy(const ScrollToOptions&) const override;
70 void scrollTo(double x, double y) const override; 70 void scrollTo(double x, double y) const override;
71 void scrollTo(const ScrollToOptions&) const override; 71 void scrollTo(const ScrollToOptions&) const override;
72 void moveBy(int x, int y, bool hasX, bool hasY) const override; 72 void moveBy(int x, int y) const override;
73 void moveTo(int x, int y, bool hasX, bool hasY) const override; 73 void moveTo(int x, int y) const override;
74 void resizeBy(int x, int y, bool hasX, bool hasY) const override; 74 void resizeBy(int x, int y) const override;
75 void resizeTo(int width, int height, bool hasWidth, bool hasHeight) const ov erride; 75 void resizeTo(int width, int height) const override;
76 PassRefPtrWillBeRawPtr<MediaQueryList> matchMedia(const String&) override; 76 PassRefPtrWillBeRawPtr<MediaQueryList> matchMedia(const String&) override;
77 PassRefPtrWillBeRawPtr<CSSStyleDeclaration> getComputedStyle(Element*, const String& pseudoElt) const override; 77 PassRefPtrWillBeRawPtr<CSSStyleDeclaration> getComputedStyle(Element*, const String& pseudoElt) const override;
78 PassRefPtrWillBeRawPtr<CSSRuleList> getMatchedCSSRules(Element*, const Strin g& pseudoElt) const override; 78 PassRefPtrWillBeRawPtr<CSSRuleList> getMatchedCSSRules(Element*, const Strin g& pseudoElt) const override;
79 int requestAnimationFrame(FrameRequestCallback*) override; 79 int requestAnimationFrame(FrameRequestCallback*) override;
80 int webkitRequestAnimationFrame(FrameRequestCallback*) override; 80 int webkitRequestAnimationFrame(FrameRequestCallback*) override;
81 void cancelAnimationFrame(int id) override; 81 void cancelAnimationFrame(int id) override;
82 82
83 private: 83 private:
84 explicit RemoteDOMWindow(RemoteFrame&); 84 explicit RemoteDOMWindow(RemoteFrame&);
85 85
86 RawPtrWillBeMember<RemoteFrame> m_frame; 86 RawPtrWillBeMember<RemoteFrame> m_frame;
87 }; 87 };
88 88
89 } // namespace blink 89 } // namespace blink
90 90
91 #endif // DOMWindow_h 91 #endif // DOMWindow_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698