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

Unified Diff: cc/tiled_layer_impl.cc

Issue 11472021: cc: Pass LayerTreeHostImpl to LayerImpl constructor (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/tiled_layer_impl.cc
diff --git a/cc/tiled_layer_impl.cc b/cc/tiled_layer_impl.cc
index cfd22437f71534c3a777e62bb7c509a6b8020b0e..fbfb005cd479d20bf5b670bbfe9f0883dedaeb3e 100644
--- a/cc/tiled_layer_impl.cc
+++ b/cc/tiled_layer_impl.cc
@@ -43,8 +43,8 @@ private:
DISALLOW_COPY_AND_ASSIGN(DrawableTile);
};
-TiledLayerImpl::TiledLayerImpl(int id)
- : LayerImpl(id)
+TiledLayerImpl::TiledLayerImpl(LayerTreeHostImpl* hostImpl, int id)
+ : LayerImpl(hostImpl, id)
, m_skipsDraw(true)
{
}

Powered by Google App Engine
This is Rietveld 408576698