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

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

Issue 774203003: Update Window API for CSSOM smooth scrolling to match the spec (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update expected results Created 6 years 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/DOMWindow.h ('k') | Source/core/frame/LocalDOMWindow.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/LocalDOMWindow.h
diff --git a/Source/core/frame/LocalDOMWindow.h b/Source/core/frame/LocalDOMWindow.h
index 1b284b2686e18c5a0a3dd2224ef2df51f40d3a04..2180b01b599e8dba2253b3b2892d9ad65c9fc4ff 100644
--- a/Source/core/frame/LocalDOMWindow.h
+++ b/Source/core/frame/LocalDOMWindow.h
@@ -141,9 +141,9 @@ public:
// FIXME: ScrollBehaviorSmooth is currently unsupported in PinchViewport.
// crbug.com/434497
void scrollBy(double x, double y, ScrollBehavior = ScrollBehaviorAuto) const override;
- void scrollBy(double x, double y, const ScrollOptions&, ExceptionState&) const override;
- void scrollTo(double x, double y, ScrollBehavior = ScrollBehaviorAuto) const override;
- void scrollTo(double x, double y, const ScrollOptions&, ExceptionState&) const override;
+ 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;
« no previous file with comments | « Source/core/frame/DOMWindow.h ('k') | Source/core/frame/LocalDOMWindow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698