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

Unified Diff: cc/nine_patch_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/nine_patch_layer_impl.h
diff --git a/cc/nine_patch_layer_impl.h b/cc/nine_patch_layer_impl.h
index de757a2e938de0f5fbb7c9ceecb87b405c56cd74..6a103895080c36f29172a9c163176ec632af3074 100644
--- a/cc/nine_patch_layer_impl.h
+++ b/cc/nine_patch_layer_impl.h
@@ -19,9 +19,9 @@ namespace cc {
class CC_EXPORT NinePatchLayerImpl : public LayerImpl {
public:
- static scoped_ptr<NinePatchLayerImpl> create(LayerTreeHostImpl* hostImpl, int id)
+ static scoped_ptr<NinePatchLayerImpl> create(LayerTreeImpl* treeImpl, int id)
{
- return make_scoped_ptr(new NinePatchLayerImpl(hostImpl, id));
+ return make_scoped_ptr(new NinePatchLayerImpl(treeImpl, id));
}
virtual ~NinePatchLayerImpl();
@@ -38,7 +38,7 @@ public:
virtual base::DictionaryValue* layerTreeAsJson() const OVERRIDE;
protected:
- NinePatchLayerImpl(LayerTreeHostImpl* hostImpl, int id);
+ NinePatchLayerImpl(LayerTreeImpl* treeImpl, int id);
private:
virtual const char* layerTypeAsString() const OVERRIDE;
« cc/layer.h ('K') | « cc/nine_patch_layer.cc ('k') | cc/nine_patch_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698