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

Unified Diff: cc/test/animation_test_common.cc

Issue 864003002: cc: Make LayerAnimationController keep state for clearing scroll delta (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review comments Created 5 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
« no previous file with comments | « cc/test/animation_test_common.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/animation_test_common.cc
diff --git a/cc/test/animation_test_common.cc b/cc/test/animation_test_common.cc
index f3fc212faeaaa88ec3442c16220e1ef86d910ea6..f6179cc9d6c99a2e117b4d8aa43248200a709d65 100644
--- a/cc/test/animation_test_common.cc
+++ b/cc/test/animation_test_common.cc
@@ -206,9 +206,7 @@ float FakeFloatTransition::GetValue(base::TimeDelta time) const {
}
FakeLayerAnimationValueObserver::FakeLayerAnimationValueObserver()
- : opacity_(0.0f),
- animation_waiting_for_deletion_(false),
- scroll_offset_animation_removed_(false) {
+ : opacity_(0.0f), animation_waiting_for_deletion_(false) {
}
FakeLayerAnimationValueObserver::~FakeLayerAnimationValueObserver() {}
@@ -236,10 +234,6 @@ void FakeLayerAnimationValueObserver::OnAnimationWaitingForDeletion() {
animation_waiting_for_deletion_ = true;
}
-void FakeLayerAnimationValueObserver::OnScrollOffsetAnimationRemoved() {
- scroll_offset_animation_removed_ = true;
-}
-
bool FakeLayerAnimationValueObserver::IsActive() const {
return true;
}
« no previous file with comments | « cc/test/animation_test_common.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698