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

Unified Diff: cc/picture_pile_impl.h

Issue 11299324: Make PicturePile pile. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix signed/unsigned mismatch warning Created 8 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
« no previous file with comments | « cc/picture_pile.cc ('k') | cc/picture_pile_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/picture_pile_impl.h
diff --git a/cc/picture_pile_impl.h b/cc/picture_pile_impl.h
index 2ab544dea153906dea222940427f8c7603dcd569..807bcbf4c47a8deea9a8eddbda35bf6db67e57e5 100644
--- a/cc/picture_pile_impl.h
+++ b/cc/picture_pile_impl.h
@@ -9,11 +9,11 @@
#include "base/memory/ref_counted.h"
#include "cc/cc_export.h"
#include "cc/picture.h"
+#include "cc/picture_pile.h"
#include "cc/scoped_ptr_vector.h"
#include "ui/gfx/rect.h"
namespace cc {
-class PicturePile;
struct RenderingStats;
class CC_EXPORT PicturePileImpl : public base::RefCounted<PicturePileImpl> {
@@ -34,7 +34,7 @@ private:
PicturePileImpl();
~PicturePileImpl();
- std::vector<scoped_refptr<Picture> > pile_;
+ PicturePile::Pile pile_;
friend class base::RefCounted<PicturePileImpl>;
DISALLOW_COPY_AND_ASSIGN(PicturePileImpl);
« no previous file with comments | « cc/picture_pile.cc ('k') | cc/picture_pile_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698