diff options
Diffstat (limited to 'cc/content_layer_updater.h')
-rw-r--r-- | cc/content_layer_updater.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cc/content_layer_updater.h b/cc/content_layer_updater.h index 4d59587..2e44bf7 100644 --- a/cc/content_layer_updater.h +++ b/cc/content_layer_updater.h @@ -21,11 +21,11 @@ protected: explicit ContentLayerUpdater(scoped_ptr<LayerPainter>); virtual ~ContentLayerUpdater(); - void paintContents(SkCanvas*, const IntRect& contentRect, float contentsWidthScale, float contentsHeightScale, IntRect& resultingOpaqueRect, RenderingStats&); - const IntRect& contentRect() const { return m_contentRect; } + void paintContents(SkCanvas*, const gfx::Rect& contentRect, float contentsWidthScale, float contentsHeightScale, gfx::Rect& resultingOpaqueRect, RenderingStats&); + const gfx::Rect& contentRect() const { return m_contentRect; } private: - IntRect m_contentRect; + gfx::Rect m_contentRect; scoped_ptr<LayerPainter> m_painter; }; |