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; |
}; |