| Index: cc/occlusion_tracker.h
|
| diff --git a/cc/occlusion_tracker.h b/cc/occlusion_tracker.h
|
| index 2c089d431fe62ea0af0ef59c06f9e7c665d42f04..87e08deb880bf9e4e0e2c579c31064a53f1e2ecc 100644
|
| --- a/cc/occlusion_tracker.h
|
| +++ b/cc/occlusion_tracker.h
|
| @@ -8,6 +8,7 @@
|
| #include "FloatQuad.h"
|
| #include "Region.h"
|
| #include "base/basictypes.h"
|
| +#include "cc/cc_export.h"
|
| #include "cc/layer_iterator.h"
|
| #include "ui/gfx/rect.h"
|
|
|
| @@ -24,9 +25,10 @@ class RenderSurface;
|
| // If the current layer owns a RenderSurfaceImpl, then occlusion on that RenderSurfaceImpl may also be queried via surfaceOccluded() and surfaceUnoccludedContentRect().
|
| // Finally, once finished with the layer, occlusion behind the layer should be marked by calling markOccludedBehindLayer().
|
| template<typename LayerType, typename RenderSurfaceType>
|
| -class OcclusionTrackerBase {
|
| +class CC_EXPORT OcclusionTrackerBase {
|
| public:
|
| - OcclusionTrackerBase(gfx::Rect rootTargetRect, bool recordMetricsForFrame);
|
| + OcclusionTrackerBase(gfx::Rect rootTargetRect, bool recordMetricsForFrame);
|
| + ~OcclusionTrackerBase();
|
|
|
| // Called at the beginning of each step in the LayerIterator's front-to-back traversal.
|
| void enterLayer(const LayerIteratorPosition<LayerType>&);
|
|
|