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

Unified Diff: sky/engine/core/page/PageAnimator.cpp

Issue 646273006: Get rid of ScrollView. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: merge to ToT Created 6 years, 2 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: sky/engine/core/page/PageAnimator.cpp
diff --git a/sky/engine/core/page/PageAnimator.cpp b/sky/engine/core/page/PageAnimator.cpp
index 48fb185d9dbe66fc149c86095b0375dcb6304a35..c339d8f56a5a003ce0365d4c08b4acd1b95433cf 100644
--- a/sky/engine/core/page/PageAnimator.cpp
+++ b/sky/engine/core/page/PageAnimator.cpp
@@ -35,8 +35,6 @@ void PageAnimator::serviceScriptedAnimations(double monotonicAnimationStartTime)
static_cast<int>(documents.size()));
for (size_t i = 0; i < documents.size(); ++i) {
if (documents[i]->frame()) {
- documents[i]->view()->serviceScrollAnimations(monotonicAnimationStartTime);
-
if (const FrameView::ScrollableAreaSet* scrollableAreas = documents[i]->view()->scrollableAreas()) {
for (FrameView::ScrollableAreaSet::iterator it = scrollableAreas->begin(); it != scrollableAreas->end(); ++it)
(*it)->serviceScrollAnimations(monotonicAnimationStartTime);

Powered by Google App Engine
This is Rietveld 408576698