| Index: cc/bitmap_canvas_layer_texture_updater.h
|
| diff --git a/cc/bitmap_canvas_layer_texture_updater.h b/cc/bitmap_canvas_layer_texture_updater.h
|
| index 97564d6ddbc826bcd7dfe9b5c5d5b0d246632901..8d7939aeb298f7fc237c1b682237cabe339ae04c 100644
|
| --- a/cc/bitmap_canvas_layer_texture_updater.h
|
| +++ b/cc/bitmap_canvas_layer_texture_updater.h
|
| @@ -32,7 +32,7 @@ public:
|
| BitmapCanvasLayerTextureUpdater* m_textureUpdater;
|
| };
|
|
|
| - static PassRefPtr<BitmapCanvasLayerTextureUpdater> create(PassOwnPtr<LayerPainterChromium>);
|
| + static PassRefPtr<BitmapCanvasLayerTextureUpdater> create(scoped_ptr<LayerPainterChromium>);
|
| virtual ~BitmapCanvasLayerTextureUpdater();
|
|
|
| virtual PassOwnPtr<LayerTextureUpdater::Texture> createTexture(CCPrioritizedTextureManager*) OVERRIDE;
|
| @@ -43,12 +43,13 @@ public:
|
| virtual void setOpaque(bool) OVERRIDE;
|
|
|
| protected:
|
| - explicit BitmapCanvasLayerTextureUpdater(PassOwnPtr<LayerPainterChromium>);
|
| + explicit BitmapCanvasLayerTextureUpdater(scoped_ptr<LayerPainterChromium>);
|
|
|
| OwnPtr<SkCanvas> m_canvas;
|
| IntSize m_canvasSize;
|
| bool m_opaque;
|
| };
|
|
|
| -} // namespace cc
|
| -#endif // BitmapCanvasLayerTextureUpdater_h
|
| +} // namespace cc
|
| +
|
| +#endif // BitmapCanvasLayerTextureUpdater_h
|
|
|