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

Unified Diff: third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h

Issue 2650343008: Implement Element.scrollIntoView for scroll-behavior: smooth. (Closed)
Patch Set: Fixed nits. Created 3 years, 6 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: third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h
diff --git a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h
index a52883f2143cc0db5f0770930770836a8b8ab149..98a274c8adcfb24843d898a86fd5822bac73e0ba 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h
+++ b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h
@@ -240,6 +240,8 @@ class CORE_EXPORT PaintLayerScrollableArea final
PlatformChromeClient* GetChromeClient() const override;
+ SmoothScrollSequencer* GetSmoothScrollSequencer() const override;
+
// For composited scrolling, we allocate an extra GraphicsLayer to hold
// onto the scrolling content. The layer can be shifted on the GPU and
// composited at little cost.
@@ -392,6 +394,7 @@ class CORE_EXPORT PaintLayerScrollableArea final
LayoutRect ScrollIntoView(const LayoutRect&,
const ScrollAlignment& align_x,
const ScrollAlignment& align_y,
+ bool is_smooth,
ScrollType = kProgrammaticScroll) override;
// Returns true if scrollable area is in the FrameView's collection of

Powered by Google App Engine
This is Rietveld 408576698