| Index: cc/layers/solid_color_layer.h
|
| diff --git a/cc/layers/solid_color_layer.h b/cc/layers/solid_color_layer.h
|
| index 8dc986075a50563c80c5f079cc7ef1a69a12f182..b544f66311a55ab51d1735a8c90ea76f8c5eed6d 100644
|
| --- a/cc/layers/solid_color_layer.h
|
| +++ b/cc/layers/solid_color_layer.h
|
| @@ -15,14 +15,14 @@ namespace cc {
|
| // SetBackgroundColor() on the base class.
|
| class CC_EXPORT SolidColorLayer : public Layer {
|
| public:
|
| - static scoped_refptr<SolidColorLayer> Create();
|
| + static scoped_refptr<SolidColorLayer> Create(const LayerSettings& settings);
|
|
|
| scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override;
|
|
|
| void SetBackgroundColor(SkColor color) override;
|
|
|
| protected:
|
| - SolidColorLayer();
|
| + explicit SolidColorLayer(const LayerSettings& settings);
|
|
|
| private:
|
| ~SolidColorLayer() override;
|
|
|