| Index: cc/trees/occlusion_tracker.cc
|
| diff --git a/cc/trees/occlusion_tracker.cc b/cc/trees/occlusion_tracker.cc
|
| index 73bb8b0fa2f1c8fb6d9686485bb980045206487d..bc609cf9ce0389e5936558734c47a15df9f3417f 100644
|
| --- a/cc/trees/occlusion_tracker.cc
|
| +++ b/cc/trees/occlusion_tracker.cc
|
| @@ -7,7 +7,6 @@
|
| #include <algorithm>
|
|
|
| #include "cc/base/math_util.h"
|
| -#include "cc/debug/overdraw_metrics.h"
|
| #include "cc/layers/layer.h"
|
| #include "cc/layers/layer_impl.h"
|
| #include "cc/layers/render_surface.h"
|
| @@ -19,10 +18,8 @@ namespace cc {
|
|
|
| template <typename LayerType>
|
| OcclusionTracker<LayerType>::OcclusionTracker(
|
| - const gfx::Rect& screen_space_clip_rect,
|
| - bool record_metrics_for_frame)
|
| + const gfx::Rect& screen_space_clip_rect)
|
| : screen_space_clip_rect_(screen_space_clip_rect),
|
| - overdraw_metrics_(OverdrawMetrics::Create(record_metrics_for_frame)),
|
| occluding_screen_space_rects_(NULL),
|
| non_occluding_screen_space_rects_(NULL) {}
|
|
|
|
|