Index: Source/core/frame/RemoteDOMWindow.cpp |
diff --git a/Source/core/frame/RemoteDOMWindow.cpp b/Source/core/frame/RemoteDOMWindow.cpp |
index 3840f198ffc9e1e58d8d6634d96870249dbee6e0..93bcb89e7b83cf91c589e208bd1307aea482fff7 100644 |
--- a/Source/core/frame/RemoteDOMWindow.cpp |
+++ b/Source/core/frame/RemoteDOMWindow.cpp |
@@ -301,22 +301,22 @@ void RemoteDOMWindow::scrollTo(const ScrollToOptions&) const |
ASSERT_NOT_REACHED(); |
} |
-void RemoteDOMWindow::moveBy(float x, float y) const |
+void RemoteDOMWindow::moveBy(int x, int y) const |
{ |
ASSERT_NOT_REACHED(); |
} |
-void RemoteDOMWindow::moveTo(float x, float y) const |
+void RemoteDOMWindow::moveTo(int x, int y, bool hasX, bool hasY) const |
{ |
ASSERT_NOT_REACHED(); |
} |
-void RemoteDOMWindow::resizeBy(float x, float y) const |
+void RemoteDOMWindow::resizeBy(int x, int y) const |
{ |
ASSERT_NOT_REACHED(); |
} |
-void RemoteDOMWindow::resizeTo(float width, float height) const |
+void RemoteDOMWindow::resizeTo(int width, int height, bool hasWidth, bool hasHeight) const |
{ |
ASSERT_NOT_REACHED(); |
} |