| Index: cc/layers/picture_layer_unittest.cc
|
| diff --git a/cc/layers/picture_layer_unittest.cc b/cc/layers/picture_layer_unittest.cc
|
| index ab06bb01b81d9ffa09fd8237228043bf61e11b9d..48d4abccdd6f4854afe28aac135c0a0b78c186c0 100644
|
| --- a/cc/layers/picture_layer_unittest.cc
|
| +++ b/cc/layers/picture_layer_unittest.cc
|
| @@ -62,8 +62,8 @@ TEST(PictureLayerTest, NoTilesIfEmptyBounds) {
|
| DebugScopedSetImplThread impl_thread(&proxy);
|
|
|
| TestSharedBitmapManager shared_bitmap_manager;
|
| - FakeLayerTreeHostImpl host_impl(
|
| - ImplSidePaintingSettings(), &proxy, &shared_bitmap_manager);
|
| + FakeLayerTreeHostImpl host_impl(ImplSidePaintingSettings(), &proxy,
|
| + &shared_bitmap_manager, nullptr);
|
| host_impl.CreatePendingTree();
|
| scoped_ptr<FakePictureLayerImpl> layer_impl =
|
| FakePictureLayerImpl::Create(host_impl.pending_tree(), 1);
|
| @@ -130,12 +130,12 @@ TEST(PictureLayerTest, NonMonotonicSourceFrameNumber) {
|
|
|
| scoped_ptr<LayerTreeHost> host1 = LayerTreeHost::CreateSingleThreaded(
|
| &host_client1, &host_client1, shared_bitmap_manager.get(), nullptr,
|
| - settings, base::MessageLoopProxy::current(), nullptr);
|
| + nullptr, settings, base::MessageLoopProxy::current(), nullptr);
|
| host_client1.SetLayerTreeHost(host1.get());
|
|
|
| scoped_ptr<LayerTreeHost> host2 = LayerTreeHost::CreateSingleThreaded(
|
| &host_client2, &host_client2, shared_bitmap_manager.get(), nullptr,
|
| - settings, base::MessageLoopProxy::current(), nullptr);
|
| + nullptr, settings, base::MessageLoopProxy::current(), nullptr);
|
| host_client2.SetLayerTreeHost(host2.get());
|
|
|
| // The PictureLayer is put in one LayerTreeHost.
|
|
|