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

Unified Diff: third_party/WebKit/Source/platform/scroll/ScrollAnimator.h

Issue 1648293003: Fix smooth scroll jump when switching scroll handling between MT and CC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: skip irrelevant test on mac Created 4 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: third_party/WebKit/Source/platform/scroll/ScrollAnimator.h
diff --git a/third_party/WebKit/Source/platform/scroll/ScrollAnimator.h b/third_party/WebKit/Source/platform/scroll/ScrollAnimator.h
index 5f021c4104dbb5c62ca3a80b22c754ed2b169e3c..18469bd8b62264e91bb39445364dab045cdf17d7 100644
--- a/third_party/WebKit/Source/platform/scroll/ScrollAnimator.h
+++ b/third_party/WebKit/Source/platform/scroll/ScrollAnimator.h
@@ -48,7 +48,7 @@ public:
explicit ScrollAnimator(ScrollableArea*, WTF::TimeFunction = WTF::monotonicallyIncreasingTime);
~ScrollAnimator() override;
- bool hasRunningAnimation() const;
+ bool hasRunningAnimation() const override;
float computeDeltaToConsume(ScrollbarOrientation, float pixelDelta) const override;
ScrollResultOneDimensional userScroll(ScrollbarOrientation, ScrollGranularity, float step, float delta) override;
@@ -77,6 +77,11 @@ private:
// immediately to the target and returns false.
bool registerAndScheduleAnimation();
+ void postAnimationCleanupAndReset();
+
+ void addMainThreadScrollingReason();
+ void removeMainThreadScrollingReason();
+
FloatPoint m_targetOffset;
ScrollGranularity m_lastGranularity;
};

Powered by Google App Engine
This is Rietveld 408576698