| Index: cc/picture_layer.cc
|
| diff --git a/cc/picture_layer.cc b/cc/picture_layer.cc
|
| index ba95603843db34fa62ce65be3e78c88400f49923..c90d511df166946b6295ccb18d1869b2518be11f 100644
|
| --- a/cc/picture_layer.cc
|
| +++ b/cc/picture_layer.cc
|
| @@ -23,8 +23,8 @@ bool PictureLayer::drawsContent() const {
|
| return Layer::drawsContent() && client_;
|
| }
|
|
|
| -scoped_ptr<LayerImpl> PictureLayer::createLayerImpl() {
|
| - return PictureLayerImpl::create(id()).PassAs<LayerImpl>();
|
| +scoped_ptr<LayerImpl> PictureLayer::createLayerImpl(LayerTreeHostImpl* host) {
|
| + return PictureLayerImpl::create(host, id()).PassAs<LayerImpl>();
|
| }
|
|
|
| void PictureLayer::pushPropertiesTo(LayerImpl* base_layer) {
|
|
|