| Index: cc/solid_color_layer.h
|
| diff --git a/cc/solid_color_layer.h b/cc/solid_color_layer.h
|
| index bc1ede94997e0c69110e666fe0eb94f57df80937..0f7396b5ad51c2b8a6694bac8908e651c82b14b5 100644
|
| --- a/cc/solid_color_layer.h
|
| +++ b/cc/solid_color_layer.h
|
| @@ -12,17 +12,17 @@ namespace cc {
|
|
|
| // A Layer that renders a solid color. The color is specified by using
|
| // setBackgroundColor() on the base class.
|
| -class SolidColorLayerChromium : public LayerChromium {
|
| +class SolidColorLayer : public Layer {
|
| public:
|
| - static scoped_refptr<SolidColorLayerChromium> create();
|
| + static scoped_refptr<SolidColorLayer> create();
|
|
|
| - virtual scoped_ptr<CCLayerImpl> createCCLayerImpl() OVERRIDE;
|
| + virtual scoped_ptr<LayerImpl> createLayerImpl() OVERRIDE;
|
|
|
| protected:
|
| - SolidColorLayerChromium();
|
| + SolidColorLayer();
|
|
|
| private:
|
| - virtual ~SolidColorLayerChromium();
|
| + virtual ~SolidColorLayer();
|
| };
|
|
|
| }
|
|
|