summaryrefslogtreecommitdiffstats
path: root/cc/solid_color_layer.h
diff options
context:
space:
mode:
Diffstat (limited to 'cc/solid_color_layer.h')
-rw-r--r--cc/solid_color_layer.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/cc/solid_color_layer.h b/cc/solid_color_layer.h
index bc1ede9..0f7396b 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();
};
}