Chromium Code Reviews| Index: cc/resources/content_layer_updater.h |
| diff --git a/cc/resources/content_layer_updater.h b/cc/resources/content_layer_updater.h |
| index c02759607c687f9869a7559e43fe14af03e27988..8a20a9bd7663b2d7755946dbe5aa79bd563fadd7 100644 |
| --- a/cc/resources/content_layer_updater.h |
| +++ b/cc/resources/content_layer_updater.h |
| @@ -24,6 +24,7 @@ class CC_EXPORT ContentLayerUpdater : public LayerUpdater { |
| void set_rendering_stats_instrumentation(RenderingStatsInstrumentation* rsi); |
| virtual void SetOpaque(bool opaque) OVERRIDE; |
| virtual void SetFillsBoundsCompletely(bool fills_bounds) OVERRIDE; |
| + virtual void SetBackgroundColor(SkColor background_color) OVERRIDE; |
| protected: |
| ContentLayerUpdater(scoped_ptr<LayerPainter> painter, |
| @@ -31,17 +32,23 @@ class CC_EXPORT ContentLayerUpdater : public LayerUpdater { |
| int layer_id); |
| virtual ~ContentLayerUpdater(); |
| + // Paints the contents. |content_size| size of the underlying layer. |
|
danakj
2014/09/19 22:02:58
layer's content space.
sky
2014/09/22 18:00:00
Done.
|
| + // |paint_rect| bounds to paint. Both |content_size| and |paint_rect| are in |
|
danakj
2014/09/19 22:02:58
bounds to paint in content space of the layer.
sky
2014/09/22 18:00:00
Done.
|
| + // pixels. |
| void PaintContents(SkCanvas* canvas, |
| - const gfx::Rect& content_rect, |
| + const gfx::Size& content_size, |
| + const gfx::Rect& paint_rect, |
| float contents_width_scale, |
| float contents_height_scale); |
| - gfx::Rect content_rect() const { return content_rect_; } |
| + gfx::Rect paint_rect() const { return paint_rect_; } |
| bool layer_is_opaque() const { return layer_is_opaque_; } |
| bool layer_fills_bounds_completely() const { |
| return layer_fills_bounds_completely_; |
| } |
| + SkColor background_color() const { return background_color_; } |
| + |
| RenderingStatsInstrumentation* rendering_stats_instrumentation_; |
| int layer_id_; |
| @@ -51,8 +58,9 @@ class CC_EXPORT ContentLayerUpdater : public LayerUpdater { |
| bool layer_fills_bounds_completely_; |
| private: |
| - gfx::Rect content_rect_; |
| + gfx::Rect paint_rect_; |
| scoped_ptr<LayerPainter> painter_; |
| + SkColor background_color_; |
| DISALLOW_COPY_AND_ASSIGN(ContentLayerUpdater); |
| }; |