Index: cc/layer_iterator_unittest.cc |
diff --git a/cc/layer_iterator_unittest.cc b/cc/layer_iterator_unittest.cc |
index 74e7a3eb7adf224005c5484e60be2395dc923e98..2b9296b14175eddd34c5d7e77701f2c34f25d29c 100644 |
--- a/cc/layer_iterator_unittest.cc |
+++ b/cc/layer_iterator_unittest.cc |
@@ -130,7 +130,7 @@ TEST(LayerIteratorTest, simpleTree) |
rootLayer->addChild(fourth); |
std::vector<scoped_refptr<Layer> > renderSurfaceLayerList; |
- LayerTreeHostCommon::calculateDrawTransforms(rootLayer.get(), rootLayer->bounds(), 1, 1, 256, renderSurfaceLayerList); |
+ LayerTreeHostCommon::calculateDrawTransforms(rootLayer.get(), rootLayer->bounds(), 1, 1, 256, false, renderSurfaceLayerList); |
iterateBackToFront(&renderSurfaceLayerList); |
EXPECT_COUNT(rootLayer, 0, -1, 1); |
@@ -172,7 +172,7 @@ TEST(LayerIteratorTest, complexTree) |
root23->addChild(root231); |
std::vector<scoped_refptr<Layer> > renderSurfaceLayerList; |
- LayerTreeHostCommon::calculateDrawTransforms(rootLayer.get(), rootLayer->bounds(), 1, 1, 256, renderSurfaceLayerList); |
+ LayerTreeHostCommon::calculateDrawTransforms(rootLayer.get(), rootLayer->bounds(), 1, 1, 256, false, renderSurfaceLayerList); |
iterateBackToFront(&renderSurfaceLayerList); |
EXPECT_COUNT(rootLayer, 0, -1, 1); |
@@ -227,7 +227,7 @@ TEST(LayerIteratorTest, complexTreeMultiSurface) |
root23->addChild(root231); |
std::vector<scoped_refptr<Layer> > renderSurfaceLayerList; |
- LayerTreeHostCommon::calculateDrawTransforms(rootLayer.get(), rootLayer->bounds(), 1, 1, 256, renderSurfaceLayerList); |
+ LayerTreeHostCommon::calculateDrawTransforms(rootLayer.get(), rootLayer->bounds(), 1, 1, 256, false, renderSurfaceLayerList); |
iterateBackToFront(&renderSurfaceLayerList); |
EXPECT_COUNT(rootLayer, 0, -1, 1); |