Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1577)

Unified Diff: cc/occlusion_tracker.h

Issue 11365025: Make cc a component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win?? Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>&);
« no previous file with comments | « cc/math_util.h ('k') | cc/occlusion_tracker.cc » ('j') | cc/occlusion_tracker.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698