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

Unified Diff: cc/picture_layer_impl.h

Issue 11293188: cc: Make Picture/PicturePile handle recording/raster (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix win_rel. Again. 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/picture_layer.cc ('k') | cc/picture_layer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/picture_layer_impl.h
diff --git a/cc/picture_layer_impl.h b/cc/picture_layer_impl.h
index 53ecec1f0953a9d742e41375744522ed0c61ec9a..211d1fc4a1f7e28c034c0bccbe023b0ed4cfdd72 100644
--- a/cc/picture_layer_impl.h
+++ b/cc/picture_layer_impl.h
@@ -10,6 +10,9 @@
namespace cc {
+struct AppendQuadsData;
+class QuadSink;
+
class CC_EXPORT PictureLayerImpl : public LayerImpl {
public:
static scoped_ptr<PictureLayerImpl> create(int id)
@@ -18,6 +21,11 @@ public:
}
virtual ~PictureLayerImpl();
+ // LayerImpl overrides
nduca 2012/11/09 19:34:51 overrides.
+ virtual const char* layerTypeAsString() const OVERRIDE;
+ virtual void appendQuads(QuadSink&, AppendQuadsData&) OVERRIDE;
+ virtual void dumpLayerProperties(std::string*, int indent) const OVERRIDE;
+
protected:
PictureLayerImpl(int id);
« no previous file with comments | « cc/picture_layer.cc ('k') | cc/picture_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698