| Index: cc/layers/picture_image_layer_impl_unittest.cc
|
| diff --git a/cc/layers/picture_image_layer_impl_unittest.cc b/cc/layers/picture_image_layer_impl_unittest.cc
|
| index 831e3b091edf5b4c1bb4c1c811c1af16955e528d..5c2ef4ec312d7748a7d376f00a405a39cd66abec 100644
|
| --- a/cc/layers/picture_image_layer_impl_unittest.cc
|
| +++ b/cc/layers/picture_image_layer_impl_unittest.cc
|
| @@ -12,7 +12,6 @@
|
| #include "cc/test/fake_output_surface.h"
|
| #include "cc/test/fake_picture_layer_tiling_client.h"
|
| #include "cc/test/impl_side_painting_settings.h"
|
| -#include "cc/test/mock_occlusion_tracker.h"
|
| #include "cc/test/test_shared_bitmap_manager.h"
|
| #include "cc/trees/layer_tree_impl.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| @@ -147,11 +146,10 @@ TEST_F(PictureImageLayerImplTest, IgnoreIdealContentScale) {
|
| // Draw.
|
| active_layer->draw_properties().visible_content_rect =
|
| gfx::Rect(active_layer->bounds());
|
| - MockOcclusionTracker<LayerImpl> occlusion_tracker;
|
| scoped_ptr<RenderPass> render_pass = RenderPass::Create();
|
| AppendQuadsData data;
|
| active_layer->WillDraw(DRAW_MODE_SOFTWARE, NULL);
|
| - active_layer->AppendQuads(render_pass.get(), occlusion_tracker, &data);
|
| + active_layer->AppendQuads(render_pass.get(), Occlusion(), &data);
|
| active_layer->DidDraw(NULL);
|
|
|
| EXPECT_EQ(DrawQuad::TILED_CONTENT, render_pass->quad_list.front()->material);
|
|
|