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

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

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/LocalDOMWindow.cpp ('k') | Source/core/frame/RemoteDOMWindow.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/RemoteDOMWindow.h
diff --git a/Source/core/frame/RemoteDOMWindow.h b/Source/core/frame/RemoteDOMWindow.h
index 661225346f39dcd750b5336a8f4d0b683126c33a..53efb7f5ff5e85064770cd0525745013605add0d 100644
--- a/Source/core/frame/RemoteDOMWindow.h
+++ b/Source/core/frame/RemoteDOMWindow.h
@@ -72,10 +72,10 @@ public:
void scrollBy(const ScrollToOptions&) const override;
void scrollTo(double x, double y) const override;
void scrollTo(const ScrollToOptions&) const override;
- void moveBy(float x, float y) const override;
- void moveTo(float x, float y) const override;
- void resizeBy(float x, float y) const override;
- void resizeTo(float width, float height) const override;
+ void moveBy(int x, int y) const override;
+ void moveTo(int x, int y, bool hasX, bool hasY) const override;
+ void resizeBy(int x, int y) const override;
+ void resizeTo(int width, int height, bool hasWidth, bool hasHeight) const override;
PassRefPtrWillBeRawPtr<MediaQueryList> matchMedia(const String&) override;
PassRefPtrWillBeRawPtr<CSSStyleDeclaration> getComputedStyle(Element*, const String& pseudoElt) const override;
PassRefPtrWillBeRawPtr<CSSRuleList> getMatchedCSSRules(Element*, const String& pseudoElt) const override;
« no previous file with comments | « Source/core/frame/LocalDOMWindow.cpp ('k') | Source/core/frame/RemoteDOMWindow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698