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

Unified Diff: cc/CCAnimationEvents.h

Issue 11038056: cc: Remove wtf/Vector dependency from CCAnimationEvents. (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
« no previous file with comments | « no previous file | cc/CCLayerAnimationController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/CCAnimationEvents.h
diff --git a/cc/CCAnimationEvents.h b/cc/CCAnimationEvents.h
index 0771f427ee8e13c5cde4a91864d07f785fafe222..5e86ef7381527b32b9017de03a9fc4935c3dd113 100644
--- a/cc/CCAnimationEvents.h
+++ b/cc/CCAnimationEvents.h
@@ -5,10 +5,9 @@
#ifndef CCAnimationEvents_h
#define CCAnimationEvents_h
-#include "CCActiveAnimation.h"
+#include <vector>
-#include <wtf/PassOwnPtr.h>
-#include <wtf/Vector.h>
+#include "CCActiveAnimation.h"
namespace cc {
@@ -31,8 +30,8 @@ struct CCAnimationEvent {
double monotonicTime;
};
-typedef Vector<CCAnimationEvent> CCAnimationEventsVector;
+typedef std::vector<CCAnimationEvent> CCAnimationEventsVector;
-} // namespace cc
+} // namespace cc
#endif // CCAnimationEvents_h
« no previous file with comments | « no previous file | cc/CCLayerAnimationController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698