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

Unified Diff: Source/core/frame/LocalDOMWindow.h

Issue 900203002: Add use counters for missing arguments to window.{move,resize}{To,By} (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/frame/LocalDOMWindow.h
diff --git a/Source/core/frame/LocalDOMWindow.h b/Source/core/frame/LocalDOMWindow.h
index 573260a0c8f3e770e7dc9930fef1e1a9cba5256d..2fb620b375190ccffc4c49f45dbedfd1740b48b8 100644
--- a/Source/core/frame/LocalDOMWindow.h
+++ b/Source/core/frame/LocalDOMWindow.h
@@ -133,9 +133,9 @@ public:
void scrollTo(double x, double y) const override;
void scrollTo(const ScrollToOptions&) const override;
- void moveBy(int x, int y) const override;
+ void moveBy(int x, int y, bool hasX, bool hasY) const override;
void moveTo(int x, int y, bool hasX, bool hasY) const override;
- void resizeBy(int x, int y) const override;
+ void resizeBy(int x, int y, bool hasX, bool hasY) const override;
void resizeTo(int width, int height, bool hasWidth, bool hasHeight) const override;
PassRefPtrWillBeRawPtr<MediaQueryList> matchMedia(const String&) override;
PassRefPtrWillBeRawPtr<CSSStyleDeclaration> getComputedStyle(Element*, const String& pseudoElt) const override;

Powered by Google App Engine
This is Rietveld 408576698