| Index: sky/engine/core/frame/LocalDOMWindow.h
|
| diff --git a/sky/engine/core/frame/LocalDOMWindow.h b/sky/engine/core/frame/LocalDOMWindow.h
|
| index 6f13ae2b47f2fb7c202ac0eefb75751c10fbf002..e5ade0de6949c35b430a2759da0cf86330774fbd 100644
|
| --- a/sky/engine/core/frame/LocalDOMWindow.h
|
| +++ b/sky/engine/core/frame/LocalDOMWindow.h
|
| @@ -35,7 +35,6 @@
|
| #include "platform/LifecycleContext.h"
|
| #include "platform/Supplementable.h"
|
| #include "platform/heap/Handle.h"
|
| -#include "platform/scroll/ScrollableArea.h"
|
|
|
| #include "wtf/Forward.h"
|
|
|
| @@ -133,10 +132,6 @@ public:
|
| int screenY() const;
|
| int screenLeft() const { return screenX(); }
|
| int screenTop() const { return screenY(); }
|
| - int scrollX() const;
|
| - int scrollY() const;
|
| - int pageXOffset() const { return scrollX(); }
|
| - int pageYOffset() const { return scrollY(); }
|
|
|
| // FIXME(sky): keeping self for now since js-test.html uses it.
|
| LocalDOMWindow* window() const;
|
| @@ -164,13 +159,6 @@ public:
|
|
|
| void printErrorMessage(const String&);
|
|
|
| - void scrollBy(int x, int y, ScrollBehavior = ScrollBehaviorAuto) const;
|
| - void scrollBy(int x, int y, const Dictionary& scrollOptions, ExceptionState&) const;
|
| - void scrollTo(int x, int y, ScrollBehavior = ScrollBehaviorAuto) const;
|
| - void scrollTo(int x, int y, const Dictionary& scrollOptions, ExceptionState&) const;
|
| - void scroll(int x, int y) const { scrollTo(x, y); }
|
| - void scroll(int x, int y, const Dictionary& scrollOptions, ExceptionState& exceptionState) const { scrollTo(x, y, scrollOptions, exceptionState); }
|
| -
|
| void moveBy(float x, float y) const;
|
| void moveTo(float x, float y) const;
|
|
|
|
|