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

Unified Diff: cc/tiled_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
« cc/layer.h ('K') | « cc/tiled_layer.cc ('k') | cc/tiled_layer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/tiled_layer_impl.h
diff --git a/cc/tiled_layer_impl.h b/cc/tiled_layer_impl.h
index 863831065c587db2299a4b896c4850d79531cbb9..81726b8175bdac6f7429fd9256f0a828cb70faad 100644
--- a/cc/tiled_layer_impl.h
+++ b/cc/tiled_layer_impl.h
@@ -15,9 +15,9 @@ class DrawableTile;
class CC_EXPORT TiledLayerImpl : public LayerImpl {
public:
- static scoped_ptr<TiledLayerImpl> create(LayerTreeHostImpl* hostImpl, int id)
+ static scoped_ptr<TiledLayerImpl> create(LayerTreeImpl* treeImpl, int id)
{
- return make_scoped_ptr(new TiledLayerImpl(hostImpl, id));
+ return make_scoped_ptr(new TiledLayerImpl(treeImpl, id));
}
virtual ~TiledLayerImpl();
@@ -36,7 +36,7 @@ public:
virtual void didLoseOutputSurface() OVERRIDE;
protected:
- TiledLayerImpl(LayerTreeHostImpl* hostImpl, int id);
+ TiledLayerImpl(LayerTreeImpl* treeImpl, int id);
// Exposed for testing.
bool hasTileAt(int, int) const;
bool hasResourceIdForTileAt(int, int) const;
« cc/layer.h ('K') | « cc/tiled_layer.cc ('k') | cc/tiled_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698