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

Unified Diff: cc/animation/scroll_offset_animations.cc

Issue 1950243005: Communicate MT changes to impl-only scroll offset animations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: attempt to fix rebase issue Created 4 years, 7 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 | « cc/animation/scroll_offset_animations.h ('k') | cc/animation/scroll_offset_animations_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/animation/scroll_offset_animations.cc
diff --git a/cc/animation/scroll_offset_animations.cc b/cc/animation/scroll_offset_animations.cc
new file mode 100644
index 0000000000000000000000000000000000000000..1dcda6060bb7643a7c156d727c9f19d5814b61b4
--- /dev/null
+++ b/cc/animation/scroll_offset_animations.cc
@@ -0,0 +1,45 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "cc/animation/scroll_offset_animations.h"
+
+#include "cc/animation/animation_host.h"
+
+namespace cc {
+
+ScrollOffsetAnimationUpdate::ScrollOffsetAnimationUpdate(Type type,
+ ElementId element_id)
+ : type_(type), element_id_(element_id) {}
+
+ScrollOffsetAnimations::ScrollOffsetAnimations(AnimationHost* animation_host)
+ : animation_host_(animation_host) {}
+
+ScrollOffsetAnimations::~ScrollOffsetAnimations() {}
+
+void ScrollOffsetAnimations::AddUpdate(ScrollOffsetAnimationUpdate update) {
+ queue_.push_back(update);
+ animation_host_->SetNeedsCommit();
+}
+
+bool ScrollOffsetAnimations::HasUpdatesForTesting() const {
+ return !queue_.empty();
+}
+
+void ScrollOffsetAnimations::PushPropertiesTo(
+ ScrollOffsetAnimationsImpl* animations) {
+ DCHECK(animations);
+ if (queue_.empty())
+ return;
+
+ for (auto& update : queue_) {
+ switch (update.type_) {
+ case ScrollOffsetAnimationUpdate::Type::SCROLL_OFFSET_CHANGED:
+ animations->ScrollAnimationApplyAdjustment(update.element_id_,
+ update.adjustment_);
+ }
+ }
+ queue_.clear();
+}
+
+} // namespace cc
« no previous file with comments | « cc/animation/scroll_offset_animations.h ('k') | cc/animation/scroll_offset_animations_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698