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

Unified Diff: cc/solid_color_layer_impl.h

Issue 11519018: [cc] Make LayerImpls point at LayerTreeImpl instead of LTHI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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/solid_color_layer_impl.h
diff --git a/cc/solid_color_layer_impl.h b/cc/solid_color_layer_impl.h
index c2da466a6ea2576eeb5982c0c4e32b2b7d293dad..ae1dcdc9ba66ee50b40e704c0311651eef82e2f1 100644
--- a/cc/solid_color_layer_impl.h
+++ b/cc/solid_color_layer_impl.h
@@ -12,16 +12,16 @@ namespace cc {
class CC_EXPORT SolidColorLayerImpl : public LayerImpl {
public:
- static scoped_ptr<SolidColorLayerImpl> create(LayerTreeHostImpl* hostImpl, int id)
+ static scoped_ptr<SolidColorLayerImpl> create(LayerTreeImpl* treeImpl, int id)
{
- return make_scoped_ptr(new SolidColorLayerImpl(hostImpl, id));
+ return make_scoped_ptr(new SolidColorLayerImpl(treeImpl, id));
}
virtual ~SolidColorLayerImpl();
virtual void appendQuads(QuadSink&, AppendQuadsData&) OVERRIDE;
protected:
- SolidColorLayerImpl(LayerTreeHostImpl* hostImpl, int id);
+ SolidColorLayerImpl(LayerTreeImpl* treeImpl, int id);
private:
virtual const char* layerTypeAsString() const OVERRIDE;
« cc/layer.h ('K') | « cc/solid_color_layer.cc ('k') | cc/solid_color_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698