| Index: cc/layers/nine_patch_layer_unittest.cc
|
| diff --git a/cc/layers/nine_patch_layer_unittest.cc b/cc/layers/nine_patch_layer_unittest.cc
|
| index b6be34de9ae0b377d03d9bbbadf59000f8adca80..579808bd8029bf234186acd076e3485762290076 100644
|
| --- a/cc/layers/nine_patch_layer_unittest.cc
|
| +++ b/cc/layers/nine_patch_layer_unittest.cc
|
| @@ -13,7 +13,7 @@
|
| #include "cc/test/fake_output_surface.h"
|
| #include "cc/test/fake_output_surface_client.h"
|
| #include "cc/test/geometry_test_utils.h"
|
| -#include "cc/test/test_shared_bitmap_manager.h"
|
| +#include "cc/test/test_task_graph_runner.h"
|
| #include "cc/trees/layer_tree_host.h"
|
| #include "cc/trees/single_thread_proxy.h"
|
| #include "testing/gmock/include/gmock/gmock.h"
|
| @@ -34,7 +34,8 @@ class NinePatchLayerTest : public testing::Test {
|
|
|
| protected:
|
| void SetUp() override {
|
| - layer_tree_host_ = FakeLayerTreeHost::Create(&fake_client_);
|
| + layer_tree_host_ =
|
| + FakeLayerTreeHost::Create(&fake_client_, &task_graph_runner_);
|
| }
|
|
|
| void TearDown() override {
|
| @@ -42,6 +43,7 @@ class NinePatchLayerTest : public testing::Test {
|
| }
|
|
|
| FakeLayerTreeHostClient fake_client_;
|
| + TestTaskGraphRunner task_graph_runner_;
|
| scoped_ptr<FakeLayerTreeHost> layer_tree_host_;
|
| };
|
|
|
|
|