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

Unified Diff: cc/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/canvas_layer_texture_updater.h
diff --git a/cc/canvas_layer_texture_updater.h b/cc/canvas_layer_texture_updater.h
index bf671760a30993329c79c5184a37e9f3603a8625..09da6060252cdb888f66858cdd3017b0fd1af67a 100644
--- a/cc/canvas_layer_texture_updater.h
+++ b/cc/canvas_layer_texture_updater.h
@@ -11,22 +11,22 @@ class SkCanvas;
namespace cc {
-class LayerPainterChromium;
+class LayerPainter;
// Base class for BitmapCanvasLayerTextureUpdater and
// SkPictureCanvasLayerTextureUpdater that reduces code duplication between
// their respective paintContents implementations.
class CanvasLayerTextureUpdater : public LayerTextureUpdater {
protected:
- explicit CanvasLayerTextureUpdater(scoped_ptr<LayerPainterChromium>);
+ explicit CanvasLayerTextureUpdater(scoped_ptr<LayerPainter>);
virtual ~CanvasLayerTextureUpdater();
- void paintContents(SkCanvas*, const IntRect& contentRect, float contentsWidthScale, float contentsHeightScale, IntRect& resultingOpaqueRect, CCRenderingStats&);
+ void paintContents(SkCanvas*, const IntRect& contentRect, float contentsWidthScale, float contentsHeightScale, IntRect& resultingOpaqueRect, RenderingStats&);
const IntRect& contentRect() const { return m_contentRect; }
private:
IntRect m_contentRect;
- scoped_ptr<LayerPainterChromium> m_painter;
+ scoped_ptr<LayerPainter> m_painter;
};
} // namespace cc

Powered by Google App Engine
This is Rietveld 408576698