Index: cc/picture_image_layer.h |
=================================================================== |
--- cc/picture_image_layer.h (revision 185037) |
+++ cc/picture_image_layer.h (working copy) |
@@ -20,10 +20,9 @@ |
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 @@ |
virtual ~PictureImageLayer(); |
SkBitmap bitmap_; |
- gfx::Size bounds_; |
}; |
} // namespace cc |