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

Unified Diff: Source/core/frame/RemoteDOMWindow.cpp

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/RemoteDOMWindow.cpp
diff --git a/Source/core/frame/RemoteDOMWindow.cpp b/Source/core/frame/RemoteDOMWindow.cpp
index 93bcb89e7b83cf91c589e208bd1307aea482fff7..9512e2d189a1e625a883ad0db76910257ac6b883 100644
--- a/Source/core/frame/RemoteDOMWindow.cpp
+++ b/Source/core/frame/RemoteDOMWindow.cpp
@@ -301,7 +301,7 @@ void RemoteDOMWindow::scrollTo(const ScrollToOptions&) const
ASSERT_NOT_REACHED();
}
-void RemoteDOMWindow::moveBy(int x, int y) const
+void RemoteDOMWindow::moveBy(int x, int y, bool hasX, bool hasY) const
{
ASSERT_NOT_REACHED();
}
@@ -311,7 +311,7 @@ void RemoteDOMWindow::moveTo(int x, int y, bool hasX, bool hasY) const
ASSERT_NOT_REACHED();
}
-void RemoteDOMWindow::resizeBy(int x, int y) const
+void RemoteDOMWindow::resizeBy(int x, int y, bool hasX, bool hasY) const
{
ASSERT_NOT_REACHED();
}

Powered by Google App Engine
This is Rietveld 408576698