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

Unified Diff: cc/trees/layer_sorter_unittest.cc

Issue 13285002: cc: Consolidate LayerList types. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 | « cc/trees/layer_sorter.cc ('k') | cc/trees/layer_tree_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/layer_sorter_unittest.cc
diff --git a/cc/trees/layer_sorter_unittest.cc b/cc/trees/layer_sorter_unittest.cc
index 73de79cc4ae55af76e2e9706a6bfa661362ea8a5..b1d7b819fc5dd8f2c6cfcd78fe28fafa3b097240 100644
--- a/cc/trees/layer_sorter_unittest.cc
+++ b/cc/trees/layer_sorter_unittest.cc
@@ -248,7 +248,7 @@ TEST(LayerSorterTest, VerifyExistingOrderingPreservedWhenNoZDiff) {
layer5->draw_properties().target_space_transform = BehindMatrix;
layer5->SetDrawsContent(true);
- std::vector<LayerImpl*> layer_list;
+ LayerImplList layer_list;
layer_list.push_back(layer1.get());
layer_list.push_back(layer2.get());
layer_list.push_back(layer3.get());
@@ -305,7 +305,7 @@ TEST(LayerSorterTest, VerifyConcidentLayerPrecisionLossResultsInDocumentOrder) {
layer2->draw_properties().target_space_transform = FrontMatrix;
layer2->SetDrawsContent(true);
- std::vector<LayerImpl*> layer_list;
+ LayerImplList layer_list;
layer_list.push_back(layer1.get());
layer_list.push_back(layer2.get());
« no previous file with comments | « cc/trees/layer_sorter.cc ('k') | cc/trees/layer_tree_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698