| Index: cc/picture_layer.h
|
| diff --git a/cc/picture_layer.h b/cc/picture_layer.h
|
| index d22d9c20fc15c4632eb1538176f0bd41152fdc47..896d5616cc50bbb5b2362e3ffbd586bfe4e5cd79 100644
|
| --- a/cc/picture_layer.h
|
| +++ b/cc/picture_layer.h
|
| @@ -7,10 +7,13 @@
|
|
|
| #include "cc/layer.h"
|
| #include "cc/picture_pile.h"
|
| +#include "cc/occlusion_tracker.h"
|
|
|
| namespace cc {
|
|
|
| class ContentLayerClient;
|
| +class ResourceUpdateQueue;
|
| +struct RenderingStats;
|
|
|
| class CC_EXPORT PictureLayer : public Layer {
|
| public:
|
| @@ -22,6 +25,9 @@ public:
|
| virtual bool drawsContent() const OVERRIDE;
|
| virtual scoped_ptr<LayerImpl> createLayerImpl() OVERRIDE;
|
| virtual void pushPropertiesTo(LayerImpl*) OVERRIDE;
|
| + virtual void setNeedsDisplayRect(const gfx::RectF& layerRect) OVERRIDE;
|
| + virtual void update(ResourceUpdateQueue&, const OcclusionTracker*,
|
| + RenderingStats&) OVERRIDE;
|
|
|
| protected:
|
| explicit PictureLayer(ContentLayerClient*);
|
|
|