| Index: Source/core/frame/DOMWindow.h
|
| diff --git a/Source/core/frame/DOMWindow.h b/Source/core/frame/DOMWindow.h
|
| index ed475d7d5985026387aeb059959e394e42dc2af5..af7496d9a9ba1ac3b24099067e694aa630e2d05d 100644
|
| --- a/Source/core/frame/DOMWindow.h
|
| +++ b/Source/core/frame/DOMWindow.h
|
| @@ -149,14 +149,10 @@ public:
|
| void scroll(double x, double y) const { scrollTo(x, y); }
|
| void scroll(const ScrollToOptions& scrollToOptions) const { scrollTo(scrollToOptions); }
|
| virtual void moveBy(int x, int y) const = 0;
|
| - void moveTo() const { moveTo(0, 0, false, false); }
|
| - void moveTo(int x) const { moveTo(x, 0, true, false); }
|
| - virtual void moveTo(int x, int y, bool hasX = true, bool hasY = true) const = 0;
|
| + virtual void moveTo(int x, int y) const = 0;
|
|
|
| virtual void resizeBy(int x, int y) const = 0;
|
| - void resizeTo() const { resizeTo(0, 0, false, false); }
|
| - void resizeTo(int x) const { resizeTo(x, 0, true, false); }
|
| - virtual void resizeTo(int width, int height, bool hasWidth = true, bool hasHeight = true) const = 0;
|
| + virtual void resizeTo(int width, int height) const = 0;
|
|
|
| virtual PassRefPtrWillBeRawPtr<MediaQueryList> matchMedia(const String&) = 0;
|
|
|
|
|