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

Unified Diff: cc/layers/layer_iterator_unittest.cc

Issue 12876006: Revert 189830 "cc: Chromify LayerTreeHostCommon" (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1451/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/layers/layer_iterator.h ('k') | cc/layers/solid_color_layer_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layers/layer_iterator_unittest.cc
===================================================================
--- cc/layers/layer_iterator_unittest.cc (revision 190264)
+++ cc/layers/layer_iterator_unittest.cc (working copy)
@@ -137,13 +137,13 @@
root_layer->AddChild(fourth);
std::vector<scoped_refptr<Layer> > render_surface_layerList;
- LayerTreeHostCommon::CalculateDrawProperties(root_layer.get(),
+ LayerTreeHostCommon::calculateDrawProperties(root_layer.get(),
root_layer->bounds(),
1,
1,
256,
false,
- &render_surface_layerList);
+ render_surface_layerList);
IterateBackToFront(&render_surface_layerList);
EXPECT_COUNT(root_layer, 0, -1, 1);
@@ -184,13 +184,13 @@
root23->AddChild(root231);
std::vector<scoped_refptr<Layer> > render_surface_layerList;
- LayerTreeHostCommon::CalculateDrawProperties(root_layer.get(),
+ LayerTreeHostCommon::calculateDrawProperties(root_layer.get(),
root_layer->bounds(),
1,
1,
256,
false,
- &render_surface_layerList);
+ render_surface_layerList);
IterateBackToFront(&render_surface_layerList);
EXPECT_COUNT(root_layer, 0, -1, 1);
@@ -246,13 +246,13 @@
root23->AddChild(root231);
std::vector<scoped_refptr<Layer> > render_surface_layerList;
- LayerTreeHostCommon::CalculateDrawProperties(root_layer.get(),
+ LayerTreeHostCommon::calculateDrawProperties(root_layer.get(),
root_layer->bounds(),
1,
1,
256,
false,
- &render_surface_layerList);
+ render_surface_layerList);
IterateBackToFront(&render_surface_layerList);
EXPECT_COUNT(root_layer, 0, -1, 1);
« no previous file with comments | « cc/layers/layer_iterator.h ('k') | cc/layers/solid_color_layer_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698