Index: cc/layer_tree_host_impl_unittest.cc |
diff --git a/cc/layer_tree_host_impl_unittest.cc b/cc/layer_tree_host_impl_unittest.cc |
index af6082d5d674291520c12615206b4276dd5107f5..f3e2ac829076b75d1546efd57d5780569b69213c 100644 |
--- a/cc/layer_tree_host_impl_unittest.cc |
+++ b/cc/layer_tree_host_impl_unittest.cc |
@@ -2807,7 +2807,7 @@ TEST_P(LayerTreeHostImplTest, dontUseOldResourcesAfterLostOutputSurface) |
tileLayer->pushTileProperties(0, 0, 1, gfx::Rect(0, 0, 10, 10), false); |
rootLayer->addChild(tileLayer.PassAs<LayerImpl>()); |
- scoped_ptr<TextureLayerImpl> textureLayer = TextureLayerImpl::create(m_hostImpl->activeTree(), layerId++); |
+ scoped_ptr<TextureLayerImpl> textureLayer = TextureLayerImpl::create(m_hostImpl->activeTree(), layerId++, false); |
textureLayer->setBounds(gfx::Size(10, 10)); |
textureLayer->setAnchorPoint(gfx::PointF(0, 0)); |
textureLayer->setContentBounds(gfx::Size(10, 10)); |
@@ -2824,7 +2824,7 @@ TEST_P(LayerTreeHostImplTest, dontUseOldResourcesAfterLostOutputSurface) |
maskLayer->setTilingData(*tilingData); |
maskLayer->pushTileProperties(0, 0, 1, gfx::Rect(0, 0, 10, 10), false); |
- scoped_ptr<TextureLayerImpl> textureLayerWithMask = TextureLayerImpl::create(m_hostImpl->activeTree(), layerId++); |
+ scoped_ptr<TextureLayerImpl> textureLayerWithMask = TextureLayerImpl::create(m_hostImpl->activeTree(), layerId++, false); |
textureLayerWithMask->setBounds(gfx::Size(10, 10)); |
textureLayerWithMask->setAnchorPoint(gfx::PointF(0, 0)); |
textureLayerWithMask->setContentBounds(gfx::Size(10, 10)); |
@@ -3016,7 +3016,7 @@ TEST_P(LayerTreeHostImplTest, layersFreeTextures) |
tileLayer->pushTileProperties(0, 0, 1, gfx::Rect(0, 0, 10, 10), false); |
rootLayer->addChild(tileLayer.PassAs<LayerImpl>()); |
- scoped_ptr<TextureLayerImpl> textureLayer = TextureLayerImpl::create(m_hostImpl->activeTree(), 3); |
+ scoped_ptr<TextureLayerImpl> textureLayer = TextureLayerImpl::create(m_hostImpl->activeTree(), 3, false); |
textureLayer->setBounds(gfx::Size(10, 10)); |
textureLayer->setAnchorPoint(gfx::PointF(0, 0)); |
textureLayer->setContentBounds(gfx::Size(10, 10)); |