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

Unified Diff: cc/CCRenderPass.h

Issue 10989026: cc: Remove the WTF::Vector dependency from CCRenderPass. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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/CCRenderPass.h
diff --git a/cc/CCRenderPass.h b/cc/CCRenderPass.h
index f1e9dedb2b71c1c674238fe1afd90ce32a59adba..2408c123fbdc60ba95d4176a2428328871e69d9d 100644
--- a/cc/CCRenderPass.h
+++ b/cc/CCRenderPass.h
@@ -15,7 +15,7 @@
#include "cc/scoped_ptr_vector.h"
#include <public/WebFilterOperations.h>
#include <public/WebTransformationMatrix.h>
-#include <wtf/Vector.h>
+#include <vector>
namespace cc {
@@ -128,7 +128,7 @@ struct hash<cc::CCRenderPass::Id> {
}
namespace cc {
-typedef Vector<CCRenderPass*> CCRenderPassList;
+typedef std::vector<CCRenderPass*> CCRenderPassList;
typedef ScopedPtrHashMap<CCRenderPass::Id, CCRenderPass> CCRenderPassIdHashMap;
} // namespace cc

Powered by Google App Engine
This is Rietveld 408576698