| Index: cc/trees/quad_culler.h
|
| diff --git a/cc/trees/quad_culler.h b/cc/trees/quad_culler.h
|
| index be0095f9f41f4629b54c4728a34c5fa022f7aa87..3d715439e06aa441ddac18602c288139eecd1428 100644
|
| --- a/cc/trees/quad_culler.h
|
| +++ b/cc/trees/quad_culler.h
|
| @@ -12,15 +12,15 @@
|
| namespace cc {
|
| class LayerImpl;
|
| class RenderSurfaceImpl;
|
| -template <typename LayerType, typename SurfaceType> class OcclusionTrackerBase;
|
| +template <typename LayerType>
|
| +class OcclusionTracker;
|
|
|
| class CC_EXPORT QuadCuller : public QuadSink {
|
| public:
|
| QuadCuller(QuadList* quad_list,
|
| SharedQuadStateList* shared_quad_state_list,
|
| const LayerImpl* layer,
|
| - const OcclusionTrackerBase<LayerImpl, RenderSurfaceImpl>&
|
| - occlusion_tracker,
|
| + const OcclusionTracker<LayerImpl>& occlusion_tracker,
|
| bool show_culling_with_debug_border_quads,
|
| bool for_surface);
|
| virtual ~QuadCuller() {}
|
| @@ -35,7 +35,7 @@ class CC_EXPORT QuadCuller : public QuadSink {
|
| QuadList* quad_list_;
|
| SharedQuadStateList* shared_quad_state_list_;
|
| const LayerImpl* layer_;
|
| - const OcclusionTrackerBase<LayerImpl, RenderSurfaceImpl>& occlusion_tracker_;
|
| + const OcclusionTracker<LayerImpl>& occlusion_tracker_;
|
|
|
| SharedQuadState* current_shared_quad_state_;
|
| bool show_culling_with_debug_border_quads_;
|
|
|