| Index: cc/layer.cc
|
| diff --git a/cc/layer.cc b/cc/layer.cc
|
| index 57d1c1731221fcb2b4464ce3373e84db072278c6..23a5937952a13ec95635e142f1e083ac5807b768 100644
|
| --- a/cc/layer.cc
|
| +++ b/cc/layer.cc
|
| @@ -614,9 +614,9 @@ void Layer::pushPropertiesTo(LayerImpl* layer)
|
| m_updateRect = gfx::RectF();
|
| }
|
|
|
| -scoped_ptr<LayerImpl> Layer::createLayerImpl()
|
| +scoped_ptr<LayerImpl> Layer::createLayerImpl(LayerTreeHostImpl* hostImpl)
|
| {
|
| - return LayerImpl::create(m_layerId);
|
| + return LayerImpl::create(hostImpl, m_layerId);
|
| }
|
|
|
| bool Layer::drawsContent() const
|
|
|