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

Unified Diff: third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.h

Issue 2659183002: [RootLayerScrolls] Fix frame scrolling layer in ScrollingCoordinator (Closed)
Patch Set: nit scratched Created 3 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
Index: third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.h
diff --git a/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.h b/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.h
index 3b73e61632babca2717ee1e458440b028cd83a3d..24f17a566b162376a473503f3114f0801b4bd991 100644
--- a/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.h
+++ b/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.h
@@ -154,7 +154,7 @@ class CORE_EXPORT ScrollingCoordinator final
private:
bool shouldUpdateAfterCompositingChange() const {
return m_scrollGestureRegionIsDirty || m_touchEventTargetRectsAreDirty ||
- m_shouldScrollOnMainThreadDirty || frameViewIsDirty();
+ m_shouldScrollOnMainThreadDirty || frameScrollerIsDirty();
}
void setShouldUpdateScrollLayerPositionOnMainThread(
@@ -171,7 +171,7 @@ class CORE_EXPORT ScrollingCoordinator final
ScrollbarOrientation);
void removeWebScrollbarLayer(ScrollableArea*, ScrollbarOrientation);
- bool frameViewIsDirty() const;
+ bool frameScrollerIsDirty() const;
std::unique_ptr<CompositorAnimationHost> m_animationHost;
std::unique_ptr<CompositorAnimationTimeline>

Powered by Google App Engine
This is Rietveld 408576698