diff options
author | enne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-19 20:58:10 +0000 |
---|---|---|
committer | enne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-19 20:58:10 +0000 |
commit | 184fac5add06d5f4670fa6be4a4d3b39232d51bb (patch) | |
tree | 7efc1d20146fcafdbe408fa67292117c41e9393f /cc/animation_events.h | |
parent | fb7ffba75e81a79436434bab0715be0d6e67bc07 (diff) | |
download | chromium_src-184fac5add06d5f4670fa6be4a4d3b39232d51bb.zip chromium_src-184fac5add06d5f4670fa6be4a4d3b39232d51bb.tar.gz chromium_src-184fac5add06d5f4670fa6be4a4d3b39232d51bb.tar.bz2 |
cc: Rename cc classes and members to match filenames
BUG=155413
Review URL: https://codereview.chromium.org/11189043
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163052 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/animation_events.h')
-rw-r--r-- | cc/animation_events.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cc/animation_events.h b/cc/animation_events.h index 5e86ef7..52c99d3 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 |