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