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

Unified Diff: Source/core/page/PageAnimator.cpp

Issue 246293006: Blink Support for Overlay Scrollbar Animation Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix try server compile error Created 6 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
« no previous file with comments | « no previous file | Source/platform/blink_platform.gypi » ('j') | Source/platform/scroll/ScrollableArea.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/PageAnimator.cpp
diff --git a/Source/core/page/PageAnimator.cpp b/Source/core/page/PageAnimator.cpp
index ce939eacee62a7848c92d4b7bbe8094daa466581..201ba3025aa83920c22c800a5431d7a98d964c6a 100644
--- a/Source/core/page/PageAnimator.cpp
+++ b/Source/core/page/PageAnimator.cpp
@@ -37,11 +37,11 @@ void PageAnimator::serviceScriptedAnimations(double monotonicAnimationStartTime)
for (size_t i = 0; i < documents.size(); ++i) {
if (documents[i]->frame()) {
- documents[i]->view()->serviceScrollAnimations();
+ documents[i]->view()->serviceScrollbarAnimations();
if (const FrameView::ScrollableAreaSet* scrollableAreas = documents[i]->view()->scrollableAreas()) {
for (FrameView::ScrollableAreaSet::iterator it = scrollableAreas->begin(); it != scrollableAreas->end(); ++it)
- (*it)->serviceScrollAnimations();
+ (*it)->serviceScrollbarAnimations();
}
}
}
« no previous file with comments | « no previous file | Source/platform/blink_platform.gypi » ('j') | Source/platform/scroll/ScrollableArea.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698