| Index: cc/tree_synchronizer_unittest.cc
|
| diff --git a/cc/tree_synchronizer_unittest.cc b/cc/tree_synchronizer_unittest.cc
|
| index d2acd186445b275d95ed367b32c5239dae9d2b1b..05fac2971fc262f8661b38672f92f8c42b139020 100644
|
| --- a/cc/tree_synchronizer_unittest.cc
|
| +++ b/cc/tree_synchronizer_unittest.cc
|
| @@ -484,8 +484,13 @@ TEST_F(TreeSynchronizerTest, SynchronizeAnimations) {
|
| LayerTreeSettings settings;
|
| FakeProxy proxy(scoped_ptr<Thread>(NULL));
|
| DebugScopedSetImplThread impl(&proxy);
|
| + scoped_ptr<RenderingStatsInstrumentation> stats_instrumentation =
|
| + RenderingStatsInstrumentation::Create();
|
| scoped_ptr<LayerTreeHostImpl> host_impl =
|
| - LayerTreeHostImpl::Create(settings, NULL, &proxy);
|
| + LayerTreeHostImpl::Create(settings,
|
| + NULL,
|
| + &proxy,
|
| + stats_instrumentation.get());
|
|
|
| scoped_refptr<Layer> layer_tree_root = Layer::Create();
|
|
|
|
|