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

Unified Diff: Source/core/page/scrolling/ScrollState.cpp

Issue 1236913004: Expose scroll customization for touch to JS (behind REF). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Change map value to WeakMember, remove Document hack. Created 5 years, 4 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: Source/core/page/scrolling/ScrollState.cpp
diff --git a/Source/core/page/scrolling/ScrollState.cpp b/Source/core/page/scrolling/ScrollState.cpp
index 4ed9ae802049cce2f3589e1eb33dc3f2f6844795..5ccd32d66cd47bda4d54ca73538f333db7a755ef 100644
--- a/Source/core/page/scrolling/ScrollState.cpp
+++ b/Source/core/page/scrolling/ScrollState.cpp
@@ -55,7 +55,7 @@ void ScrollState::consumeDelta(double x, double y, ExceptionState& exceptionStat
void ScrollState::distributeToScrollChainDescendant()
{
if (!m_scrollChain.isEmpty())
- m_scrollChain.takeFirst()->distributeScroll(*this);
+ m_scrollChain.takeFirst()->callDistributeScroll(*this);
}
void ScrollState::consumeDeltaNative(double x, double y)

Powered by Google App Engine
This is Rietveld 408576698