Index: cc/resources/bitmap_content_layer_updater.h |
diff --git a/cc/resources/bitmap_content_layer_updater.h b/cc/resources/bitmap_content_layer_updater.h |
index 781fc0baa73c83ec0a4954868f3830a85f7d0996..fe1c8712a2f3eaa271de533c3f9715d4868a7d1c 100644 |
--- a/cc/resources/bitmap_content_layer_updater.h |
+++ b/cc/resources/bitmap_content_layer_updater.h |
@@ -14,7 +14,6 @@ class SkCanvas; |
namespace cc { |
-class LayerPainter; |
class RenderingStatsInstrumenation; |
// This class rasterizes the content_rect into a skia bitmap canvas. It then |
@@ -41,7 +40,7 @@ class CC_EXPORT BitmapContentLayerUpdater : public ContentLayerUpdater { |
}; |
static scoped_refptr<BitmapContentLayerUpdater> Create( |
- scoped_ptr<LayerPainter> painter, |
+ scoped_ptr<ContentLayerPainter> painter, |
RenderingStatsInstrumentation* stats_instrumenation, |
int layer_id); |
@@ -61,10 +60,9 @@ class CC_EXPORT BitmapContentLayerUpdater : public ContentLayerUpdater { |
virtual void ReduceMemoryUsage() OVERRIDE; |
protected: |
- BitmapContentLayerUpdater( |
- scoped_ptr<LayerPainter> painter, |
- RenderingStatsInstrumentation* stats_instrumenation, |
- int layer_id); |
+ BitmapContentLayerUpdater(scoped_ptr<ContentLayerPainter> painter, |
+ RenderingStatsInstrumentation* stats_instrumenation, |
+ int layer_id); |
virtual ~BitmapContentLayerUpdater(); |
SkBitmap bitmap_backing_; |