Index: cc/layers/layer_utils_unittest.cc |
diff --git a/cc/layers/layer_utils_unittest.cc b/cc/layers/layer_utils_unittest.cc |
index 8c7501c5237828c9e1dfc6e17f503f53c2f2e767..3a8d99c2e06b8230f9a0752e90a78c236a5331d9 100644 |
--- a/cc/layers/layer_utils_unittest.cc |
+++ b/cc/layers/layer_utils_unittest.cc |
@@ -9,6 +9,7 @@ |
#include "cc/test/animation_test_common.h" |
#include "cc/test/fake_impl_proxy.h" |
#include "cc/test/fake_layer_tree_host_impl.h" |
+#include "cc/test/test_shared_bitmap_manager.h" |
#include "testing/gtest/include/gtest/gtest.h" |
#include "ui/gfx/box_f.h" |
#include "ui/gfx/test/gfx_util.h" |
@@ -23,7 +24,7 @@ float diagonal(float width, float height) { |
class LayerUtilsGetAnimationBoundsTest : public testing::Test { |
public: |
LayerUtilsGetAnimationBoundsTest() |
- : host_impl_(&proxy_), |
+ : host_impl_(&proxy_, &shared_bitmap_manager_), |
root_(CreateThreeNodeTree(host_impl_)), |
parent_(root_->children()[0]), |
child_(parent_->children()[0]) {} |
@@ -43,6 +44,7 @@ class LayerUtilsGetAnimationBoundsTest : public testing::Test { |
} |
FakeImplProxy proxy_; |
+ TestSharedBitmapManager shared_bitmap_manager_; |
FakeLayerTreeHostImpl host_impl_; |
scoped_ptr<LayerImpl> root_; |
LayerImpl* parent_; |