Chromium Code Reviews| 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); |