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

Unified Diff: cc/image_layer.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/image_layer.h
diff --git a/cc/image_layer.h b/cc/image_layer.h
index 404aed49a0fe4ce7b010114d7c5c4d292fa1969d..833a278e8357286084cf4d269daaae40925bcc8d 100644
--- a/cc/image_layer.h
+++ b/cc/image_layer.h
@@ -13,20 +13,20 @@ namespace cc {
class ImageLayerTextureUpdater;
// A Layer that contains only an Image element.
-class ImageLayerChromium : public TiledLayerChromium {
+class ImageLayer : public TiledLayer {
public:
- static scoped_refptr<ImageLayerChromium> create();
+ static scoped_refptr<ImageLayer> create();
virtual bool drawsContent() const OVERRIDE;
- virtual void setTexturePriorities(const CCPriorityCalculator&) OVERRIDE;
- virtual void update(CCTextureUpdateQueue&, const CCOcclusionTracker*, CCRenderingStats&) OVERRIDE;
+ virtual void setTexturePriorities(const PriorityCalculator&) OVERRIDE;
+ virtual void update(TextureUpdateQueue&, const OcclusionTracker*, RenderingStats&) OVERRIDE;
virtual bool needsContentsScale() const OVERRIDE;
void setBitmap(const SkBitmap& image);
private:
- ImageLayerChromium();
- virtual ~ImageLayerChromium();
+ ImageLayer();
+ virtual ~ImageLayer();
void setTilingOption(TilingOption);
« cc/active_animation.h ('K') | « cc/heads_up_display_unittest.cc ('k') | cc/image_layer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698