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

Unified Diff: cc/animation/animation_events.h

Issue 1584743002: CC Animation: Replace AnimiationEventsVector with AnimiationEvents class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 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 | « no previous file | cc/animation/animation_events.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/animation/animation_events.h
diff --git a/cc/animation/animation_events.h b/cc/animation/animation_events.h
index d2681628f81709f8583e098bddeaf0fc840e0c92..63645ec19e9a343bc35b83e0648f0eb3153be36a 100644
--- a/cc/animation/animation_events.h
+++ b/cc/animation/animation_events.h
@@ -34,7 +34,13 @@ struct CC_EXPORT AnimationEvent {
FilterOperations filters;
};
-typedef std::vector<AnimationEvent> AnimationEventsVector;
+class CC_EXPORT AnimationEvents {
+ public:
+ AnimationEvents();
+ ~AnimationEvents();
+
+ std::vector<AnimationEvent> events_;
+};
} // namespace cc
« no previous file with comments | « no previous file | cc/animation/animation_events.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698