Index: cc/trees/quad_culler_unittest.cc |
diff --git a/cc/trees/quad_culler_unittest.cc b/cc/trees/quad_culler_unittest.cc |
index 0401df1c2b874b61428825615dd4f815289a7237..a3cc443e592f2757c598caecdb8279f531a4c5c3 100644 |
--- a/cc/trees/quad_culler_unittest.cc |
+++ b/cc/trees/quad_culler_unittest.cc |
@@ -17,6 +17,7 @@ |
#include "cc/test/fake_impl_proxy.h" |
#include "cc/test/fake_layer_tree_host_impl.h" |
#include "cc/test/test_occlusion_tracker.h" |
+#include "cc/test/test_shared_bitmap_manager.h" |
#include "cc/trees/occlusion_tracker.h" |
#include "cc/trees/single_thread_proxy.h" |
#include "testing/gmock/include/gmock/gmock.h" |
@@ -31,8 +32,7 @@ typedef LayerIterator<LayerImpl> LayerIteratorType; |
class QuadCullerTest : public testing::Test { |
public: |
QuadCullerTest() |
- : host_impl_(&proxy_), |
- layer_id_(1) {} |
+ : host_impl_(&proxy_, &shared_bitmap_manager_), layer_id_(1) {} |
scoped_ptr<TiledLayerImpl> MakeLayer(TiledLayerImpl* parent, |
const gfx::Transform& draw_transform, |
@@ -103,6 +103,7 @@ class QuadCullerTest : public testing::Test { |
protected: |
FakeImplProxy proxy_; |
+ TestSharedBitmapManager shared_bitmap_manager_; |
FakeLayerTreeHostImpl host_impl_; |
int layer_id_; |