Index: cc/layers/picture_layer_impl_perftest.cc |
diff --git a/cc/layers/picture_layer_impl_perftest.cc b/cc/layers/picture_layer_impl_perftest.cc |
index ea73cb235e2064b6634750c226968d777c97efe8..47f49be5501b2841444fbca3df25ab9a175ca8d6 100644 |
--- a/cc/layers/picture_layer_impl_perftest.cc |
+++ b/cc/layers/picture_layer_impl_perftest.cc |
@@ -13,6 +13,7 @@ |
#include "cc/test/fake_picture_pile_impl.h" |
#include "cc/test/impl_side_painting_settings.h" |
#include "cc/test/test_shared_bitmap_manager.h" |
+#include "cc/test/test_task_graph_runner.h" |
#include "cc/trees/layer_tree_impl.h" |
#include "testing/gtest/include/gtest/gtest.h" |
#include "testing/perf/perf_test.h" |
@@ -41,7 +42,8 @@ class PictureLayerImplPerfTest : public testing::Test { |
: proxy_(base::MessageLoopProxy::current()), |
host_impl_(ImplSidePaintingSettings(), |
&proxy_, |
- &shared_bitmap_manager_), |
+ &shared_bitmap_manager_, |
+ &task_graph_runner_), |
timer_(kWarmupRuns, |
base::TimeDelta::FromMilliseconds(kTimeLimitMillis), |
kTimeCheckInterval) {} |
@@ -170,6 +172,7 @@ class PictureLayerImplPerfTest : public testing::Test { |
protected: |
TestSharedBitmapManager shared_bitmap_manager_; |
+ TestTaskGraphRunner task_graph_runner_; |
FakeImplProxy proxy_; |
FakeLayerTreeHostImpl host_impl_; |
FakePictureLayerImpl* pending_layer_; |