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

Unified Diff: ppapi/cpp/paint_aggregator.h

Issue 5624002: Move more code from headers to implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 10 years 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: ppapi/cpp/paint_aggregator.h
diff --git a/ppapi/cpp/paint_aggregator.h b/ppapi/cpp/paint_aggregator.h
index a73a998e350b2c296fca1b537a91087234ca8884..3fe32a569191eab0c081d80d391af97c0b2da10d 100644
--- a/ppapi/cpp/paint_aggregator.h
+++ b/ppapi/cpp/paint_aggregator.h
@@ -22,6 +22,9 @@ namespace pp {
class PaintAggregator {
public:
struct PaintUpdate {
+ PaintUpdate();
+ ~PaintUpdate();
+
// True if there is a scroll applied. This indicates that the scroll delta
// and scroll_rect are nonzero (just as a convenience).
bool has_scroll;
@@ -86,6 +89,7 @@ class PaintAggregator {
class InternalPaintUpdate {
public:
InternalPaintUpdate();
+ ~InternalPaintUpdate();
// Computes the rect damaged by scrolling within |scroll_rect| by
// |scroll_delta|. This rect must be repainted. It is not included in

Powered by Google App Engine
This is Rietveld 408576698