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

Unified Diff: cc/test/animation_timelines_test_common.h

Issue 2189813002: ElementAnimations should hold an ObservableList of AnimationPlayers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase + fix blink_platform_unittests compile error Created 4 years, 5 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/element_animations_unittest.cc ('k') | cc/test/animation_timelines_test_common.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/animation_timelines_test_common.h
diff --git a/cc/test/animation_timelines_test_common.h b/cc/test/animation_timelines_test_common.h
index 5470b693bf7723f403f79492b7d35518ee174e67..bcf632860564c2e7b3e1b1c40ef795029848c143 100644
--- a/cc/test/animation_timelines_test_common.h
+++ b/cc/test/animation_timelines_test_common.h
@@ -244,21 +244,21 @@ class TestAnimationDelegate : public AnimationDelegate {
double animation_start_time,
std::unique_ptr<AnimationCurve> curve) override;
- bool started() { return started_; }
+ int started() { return started_; }
ajuma 2016/07/28 18:36:40 Please rename the variables and getters so its cle
- bool finished() { return finished_; }
+ int finished() { return finished_; }
- bool aborted() { return aborted_; }
+ int aborted() { return aborted_; }
- bool takeover() { return takeover_; }
+ int takeover() { return takeover_; }
base::TimeTicks start_time() { return start_time_; }
private:
- bool started_;
- bool finished_;
- bool aborted_;
- bool takeover_;
+ int started_;
+ int finished_;
+ int aborted_;
+ int takeover_;
base::TimeTicks start_time_;
};
« no previous file with comments | « cc/animation/element_animations_unittest.cc ('k') | cc/test/animation_timelines_test_common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698