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

Unified Diff: app/multi_animation.cc

Issue 5588004: [gtk] Add fade-commit to instant suggestion for predictive instant. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: clean up Created 10 years 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: app/multi_animation.cc
diff --git a/app/multi_animation.cc b/app/multi_animation.cc
index 411708c89dd4c8a68708c24acf6b547cf4e2a97f..80675b8367edee2e5919904b6380284dbfc27a9c 100644
--- a/app/multi_animation.cc
+++ b/app/multi_animation.cc
@@ -31,6 +31,12 @@ MultiAnimation::MultiAnimation(const Parts& parts)
MultiAnimation::~MultiAnimation() {}
+void MultiAnimation::Reset() {
+ Stop();
+ current_value_ = 0;
sky 2010/12/06 17:38:12 current_value and current_parent_index should be s
Evan Stade 2010/12/06 22:15:48 I think I've done what you intended
+ current_part_index_ = 0;
+}
+
void MultiAnimation::Step(base::TimeTicks time_now) {
double last_value = current_value_;
size_t last_index = current_part_index_;

Powered by Google App Engine
This is Rietveld 408576698