Index: cc/resources/content_layer_updater.h |
diff --git a/cc/resources/content_layer_updater.h b/cc/resources/content_layer_updater.h |
index b11281e76cffaf8ab0b25f35342e5fbe7a10cf53..c02759607c687f9869a7559e43fe14af03e27988 100644 |
--- a/cc/resources/content_layer_updater.h |
+++ b/cc/resources/content_layer_updater.h |
@@ -24,7 +24,6 @@ |
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, |
@@ -32,22 +31,16 @@ |
int layer_id); |
virtual ~ContentLayerUpdater(); |
- // Paints the contents. |content_size| size of the underlying layer in |
- // layer's content space. |paint_rect| bounds to paint in content space of the |
- // layer. Both |content_size| and |paint_rect| are in pixels. |
void PaintContents(SkCanvas* canvas, |
- const gfx::Size& layer_content_size, |
- const gfx::Rect& paint_rect, |
+ const gfx::Rect& content_rect, |
float contents_width_scale, |
float contents_height_scale); |
- gfx::Rect paint_rect() const { return paint_rect_; } |
+ gfx::Rect content_rect() const { return content_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_; |
@@ -58,9 +51,8 @@ |
bool layer_fills_bounds_completely_; |
private: |
- gfx::Rect paint_rect_; |
+ gfx::Rect content_rect_; |
scoped_ptr<LayerPainter> painter_; |
- SkColor background_color_; |
DISALLOW_COPY_AND_ASSIGN(ContentLayerUpdater); |
}; |