Index: cc/picture_image_layer.h |
diff --git a/cc/picture_image_layer.h b/cc/picture_image_layer.h |
index 442f68762761a466bac733f69adbf6787e019ea6..c0255e8255ea6d271b4030f38a56e791bd321e6d 100644 |
--- a/cc/picture_image_layer.h |
+++ b/cc/picture_image_layer.h |
@@ -20,10 +20,9 @@ class CC_EXPORT PictureImageLayer : public PictureLayer, ContentLayerClient { |
void setBitmap(const SkBitmap& image); |
// Layer implementation. |
- virtual void update( |
- ResourceUpdateQueue& queue, |
- const OcclusionTracker* tracker, |
- RenderingStats* stats) OVERRIDE; |
+ virtual scoped_ptr<LayerImpl> createLayerImpl( |
+ LayerTreeImpl* treeImpl) OVERRIDE; |
+ virtual bool drawsContent() const OVERRIDE; |
// ContentLayerClient implementation. |
virtual void paintContents( |
@@ -36,7 +35,6 @@ class CC_EXPORT PictureImageLayer : public PictureLayer, ContentLayerClient { |
virtual ~PictureImageLayer(); |
SkBitmap bitmap_; |
- gfx::Size bounds_; |
}; |
} // namespace cc |