Index: cc/resources/tile_manager_perftest.cc |
diff --git a/cc/resources/tile_manager_perftest.cc b/cc/resources/tile_manager_perftest.cc |
index 2204ab808d17f2a793a7f615488811d7253500a3..0aa482984197183693f6694534871b2d03f8e6a5 100644 |
--- a/cc/resources/tile_manager_perftest.cc |
+++ b/cc/resources/tile_manager_perftest.cc |
@@ -159,7 +159,8 @@ class TileManagerPerfTest : public testing::Test { |
pending_tree->DetachLayerTree(); |
scoped_ptr<FakePictureLayerImpl> pending_layer = |
- FakePictureLayerImpl::CreateWithRasterSource(pending_tree, id_, pile); |
+ FakePictureLayerImpl::CreateWithRasterSource(pending_tree, id_, pile, |
+ false); |
pending_layer->SetDrawsContent(true); |
pending_tree->SetRootLayer(pending_layer.Pass()); |
@@ -362,7 +363,7 @@ class TileManagerPerfTest : public testing::Test { |
while (static_cast<int>(layers.size()) < layer_count) { |
scoped_ptr<FakePictureLayerImpl> layer = |
FakePictureLayerImpl::CreateWithRasterSource( |
- host_impl_.pending_tree(), next_id, pile); |
+ host_impl_.pending_tree(), next_id, pile, false); |
layer->SetBounds(layer_bounds); |
layers.push_back(layer.get()); |
pending_root_layer_->AddChild(layer.Pass()); |