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

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

Issue 879913003: Use IntRect instead of FloatRect for window positions and sizes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: added FIXME comments Created 5 years, 11 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
« no previous file with comments | « Source/core/frame/RemoteDOMWindow.h ('k') | Source/core/frame/Screen.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
}
« no previous file with comments | « Source/core/frame/RemoteDOMWindow.h ('k') | Source/core/frame/Screen.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698