| 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);
|
|
|
|
|