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

Unified Diff: cc/animation_events.h

Issue 11189043: cc: Rename cc classes and members to match filenames (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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
Index: cc/animation_events.h
diff --git a/cc/animation_events.h b/cc/animation_events.h
index 5e86ef7381527b32b9017de03a9fc4935c3dd113..52c99d3539ef66df4a34b51160a3573cf29fbded 100644
--- a/cc/animation_events.h
+++ b/cc/animation_events.h
@@ -11,10 +11,10 @@
namespace cc {
-struct CCAnimationEvent {
+struct AnimationEvent {
enum Type { Started, Finished };
- CCAnimationEvent(Type type, int layerId, int groupId, CCActiveAnimation::TargetProperty targetProperty, double monotonicTime)
+ AnimationEvent(Type type, int layerId, int groupId, ActiveAnimation::TargetProperty targetProperty, double monotonicTime)
: type(type)
, layerId(layerId)
, groupId(groupId)
@@ -26,11 +26,11 @@ struct CCAnimationEvent {
Type type;
int layerId;
int groupId;
- CCActiveAnimation::TargetProperty targetProperty;
+ ActiveAnimation::TargetProperty targetProperty;
double monotonicTime;
};
-typedef std::vector<CCAnimationEvent> CCAnimationEventsVector;
+typedef std::vector<AnimationEvent> AnimationEventsVector;
} // namespace cc
« cc/active_animation.h ('K') | « cc/animation_curve.cc ('k') | cc/append_quads_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698