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

Unified Diff: cc/damage_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/damage_tracker.h
diff --git a/cc/damage_tracker.h b/cc/damage_tracker.h
index 59a134010675f593723dfc6079c3c2a90f9a45ff..6b55aa06331565865baed4a3b131fc0481417887 100644
--- a/cc/damage_tracker.h
+++ b/cc/damage_tracker.h
@@ -7,6 +7,7 @@
#include "base/hash_tables.h"
#include "base/memory/scoped_ptr.h"
+#include "cc/cc_export.h"
#include "FloatRect.h"
#include <vector>
@@ -23,7 +24,7 @@ class RenderSurfaceImpl;
// Computes the region where pixels have actually changed on a RenderSurfaceImpl. This region is used
// to scissor what is actually drawn to the screen to save GPU computation and bandwidth.
-class DamageTracker {
+class CC_EXPORT DamageTracker {
public:
static scoped_ptr<DamageTracker> create();
~DamageTracker();
@@ -57,6 +58,8 @@ private:
FloatRect m_currentDamageRect;
bool m_forceFullDamageNextUpdate;
+
+ DISALLOW_COPY_AND_ASSIGN(DamageTracker);
};
} // namespace cc
« no previous file with comments | « cc/content_layer_updater.h ('k') | cc/debug_border_draw_quad.h » ('j') | cc/occlusion_tracker.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698