Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3280)

Unified Diff: cc/skpicture_canvas_layer_texture_updater.h

Issue 11189043: cc: Rename cc classes and members to match filenames (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: cc/skpicture_canvas_layer_texture_updater.h
diff --git a/cc/skpicture_canvas_layer_texture_updater.h b/cc/skpicture_canvas_layer_texture_updater.h
index af3818fcb8c40854404e45f4e829070dc084c991..0b9701cb65905c93790cc335e2de10215ea1ce55 100644
--- a/cc/skpicture_canvas_layer_texture_updater.h
+++ b/cc/skpicture_canvas_layer_texture_updater.h
@@ -13,7 +13,7 @@ class SkCanvas;
namespace cc {
-class LayerPainterChromium;
+class LayerPainter;
// This class records the contentRect into an SkPicture. Subclasses, provide
// different implementations of tile updating based on this recorded picture.
@@ -25,12 +25,12 @@ public:
virtual void setOpaque(bool) OVERRIDE;
protected:
- explicit SkPictureCanvasLayerTextureUpdater(scoped_ptr<LayerPainterChromium>);
+ explicit SkPictureCanvasLayerTextureUpdater(scoped_ptr<LayerPainter>);
virtual ~SkPictureCanvasLayerTextureUpdater();
- virtual void prepareToUpdate(const IntRect& contentRect, const IntSize& tileSize, float contentsWidthScale, float contentsHeightScale, IntRect& resultingOpaqueRect, CCRenderingStats&) OVERRIDE;
+ virtual void prepareToUpdate(const IntRect& contentRect, const IntSize& tileSize, float contentsWidthScale, float contentsHeightScale, IntRect& resultingOpaqueRect, RenderingStats&) OVERRIDE;
void drawPicture(SkCanvas*);
- void updateTexture(CCTextureUpdateQueue& queue, CCPrioritizedTexture* texture, const IntRect& sourceRect, const IntSize& destOffset, bool partialUpdate);
+ void updateTexture(TextureUpdateQueue& queue, PrioritizedTexture* texture, const IntRect& sourceRect, const IntSize& destOffset, bool partialUpdate);
bool layerIsOpaque() const { return m_layerIsOpaque; }

Powered by Google App Engine
This is Rietveld 408576698