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

Unified Diff: cc/CCRendererSoftwareTest.cpp

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
« cc/CCLayerTreeHostImpl.cpp ('K') | « cc/CCRendererGLTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/CCRendererSoftwareTest.cpp
diff --git a/cc/CCRendererSoftwareTest.cpp b/cc/CCRendererSoftwareTest.cpp
index cacd0177974795ddd54e321b7858944753a70859..48b98e7a24977790e2f03633fafcc3b48a0a4c37 100644
--- a/cc/CCRendererSoftwareTest.cpp
+++ b/cc/CCRendererSoftwareTest.cpp
@@ -84,7 +84,7 @@ TEST_F(CCRendererSoftwareTest, solidColorQuad)
CCRenderPassList list;
CCRenderPassIdHashMap hashmap;
- list.append(rootRenderPass.get());
+ list.push_back(rootRenderPass.get());
hashmap.add(rootRenderPassId, rootRenderPass.Pass());
renderer()->drawFrame(list, hashmap);
@@ -136,7 +136,7 @@ TEST_F(CCRendererSoftwareTest, tileQuad)
CCRenderPassList list;
CCRenderPassIdHashMap hashmap;
- list.append(rootRenderPass.get());
+ list.push_back(rootRenderPass.get());
hashmap.add(rootRenderPassId, rootRenderPass.Pass());
renderer()->drawFrame(list, hashmap);
« cc/CCLayerTreeHostImpl.cpp ('K') | « cc/CCRendererGLTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698