| Index: cc/output/renderer.h
|
| diff --git a/cc/output/renderer.h b/cc/output/renderer.h
|
| index 19533104b2b2db3361ec3c08c226ee6e91aac80f..c92ce6ff689493bb4875747c9f8bf30569e6ecdc 100644
|
| --- a/cc/output/renderer.h
|
| +++ b/cc/output/renderer.h
|
| @@ -80,13 +80,13 @@ class CC_EXPORT Renderer {
|
| void SetVisible(bool visible);
|
|
|
| protected:
|
| - explicit Renderer(RendererClient* client, const LayerTreeSettings* settings)
|
| + Renderer(RendererClient* client, const RendererSettings* settings)
|
| : client_(client), settings_(settings), visible_(true) {}
|
|
|
| virtual void DidChangeVisibility() = 0;
|
|
|
| RendererClient* client_;
|
| - const LayerTreeSettings* settings_;
|
| + const RendererSettings* settings_;
|
| bool visible_;
|
|
|
| private:
|
|
|