Chromium Code Reviews| 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_; |
|
ajuma
2016/01/13 14:21:43
Would it make sense to make this private, and inst
|
| +}; |
| } // namespace cc |