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

Unified Diff: cc/damage_tracker.h

Issue 11365025: Make cc a component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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
« no previous file with comments | « cc/contents_scaling_layer.h ('k') | cc/debug_border_draw_quad.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/damage_tracker.h
diff --git a/cc/damage_tracker.h b/cc/damage_tracker.h
index 4680662b94df556638447268629bf2ec387dd7ee..5deb731dd5bd275ea191f20af969dc20f84e2d80 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 "ui/gfx/rect_f.h"
#include <vector>
@@ -27,7 +28,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();
@@ -61,6 +62,8 @@ private:
gfx::RectF m_currentDamageRect;
bool m_forceFullDamageNextUpdate;
+
+ DISALLOW_COPY_AND_ASSIGN(DamageTracker);
};
} // namespace cc
« no previous file with comments | « cc/contents_scaling_layer.h ('k') | cc/debug_border_draw_quad.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698