Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(690)

Unified Diff: cc/output/renderer.h

Issue 675083002: Add cc::RendererSettings for use in with cc::Display (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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:

Powered by Google App Engine
This is Rietveld 408576698