summaryrefslogtreecommitdiffstats
path: root/cc/resources/content_layer_updater.h
diff options
context:
space:
mode:
Diffstat (limited to 'cc/resources/content_layer_updater.h')
-rw-r--r--cc/resources/content_layer_updater.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/cc/resources/content_layer_updater.h b/cc/resources/content_layer_updater.h
index ca1f6e4..80b8a48 100644
--- a/cc/resources/content_layer_updater.h
+++ b/cc/resources/content_layer_updater.h
@@ -14,26 +14,23 @@ class SkCanvas;
namespace cc {
class LayerPainter;
-class RenderingStatsInstrumentation;
// Base class for BitmapContentLayerUpdater and
// SkPictureContentLayerUpdater that reduces code duplication between
// their respective PaintContents implementations.
class CC_EXPORT ContentLayerUpdater : public LayerUpdater {
protected:
- ContentLayerUpdater(scoped_ptr<LayerPainter> painter,
- RenderingStatsInstrumentation* stats_instrumentation);
+ explicit ContentLayerUpdater(scoped_ptr<LayerPainter> painter);
virtual ~ContentLayerUpdater();
void PaintContents(SkCanvas* canvas,
gfx::Rect content_rect,
float contents_width_scale,
float contents_height_scale,
- gfx::Rect* resulting_opaque_rect);
+ gfx::Rect* resulting_opaque_rect,
+ RenderingStats* stats);
gfx::Rect content_rect() const { return content_rect_; }
- RenderingStatsInstrumentation* rendering_stats_instrumentation_;
-
private:
gfx::Rect content_rect_;
scoped_ptr<LayerPainter> painter_;