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

Unified Diff: cc/animation_events.h

Issue 11636051: Rename ActiveAnimation -> Animation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 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/animation.cc ('k') | cc/animation_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/animation_events.h
diff --git a/cc/animation_events.h b/cc/animation_events.h
index 2658c982930e7eb4612fb9d6d4d7576b5198fc1e..69b44bca2652cc43d3b16cd35d94c5e793f3d13e 100644
--- a/cc/animation_events.h
+++ b/cc/animation_events.h
@@ -7,14 +7,14 @@
#include <vector>
-#include "cc/active_animation.h"
+#include "cc/animation.h"
namespace cc {
struct AnimationEvent {
enum Type { Started, Finished };
- AnimationEvent(Type type, int layerId, int groupId, ActiveAnimation::TargetProperty targetProperty, double monotonicTime)
+ AnimationEvent(Type type, int layerId, int groupId, Animation::TargetProperty targetProperty, double monotonicTime)
: type(type)
, layerId(layerId)
, groupId(groupId)
@@ -26,7 +26,7 @@ struct AnimationEvent {
Type type;
int layerId;
int groupId;
- ActiveAnimation::TargetProperty targetProperty;
+ Animation::TargetProperty targetProperty;
double monotonicTime;
};
« no previous file with comments | « cc/animation.cc ('k') | cc/animation_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698