| Index: cc/io_surface_layer_impl.h
|
| diff --git a/cc/io_surface_layer_impl.h b/cc/io_surface_layer_impl.h
|
| index 451373b3ee2db4d04c64824f378d59f9048023f0..f7d4a58254ec9f7cd6d961129eb170be3f9ca515 100644
|
| --- a/cc/io_surface_layer_impl.h
|
| +++ b/cc/io_surface_layer_impl.h
|
| @@ -13,9 +13,9 @@ namespace cc {
|
|
|
| class CC_EXPORT IOSurfaceLayerImpl : public LayerImpl {
|
| public:
|
| - static scoped_ptr<IOSurfaceLayerImpl> create(int id)
|
| + static scoped_ptr<IOSurfaceLayerImpl> create(LayerTreeHostImpl* hostImpl, int id)
|
| {
|
| - return make_scoped_ptr(new IOSurfaceLayerImpl(id));
|
| + return make_scoped_ptr(new IOSurfaceLayerImpl(hostImpl, id));
|
| }
|
| virtual ~IOSurfaceLayerImpl();
|
|
|
| @@ -29,7 +29,7 @@ public:
|
| virtual void dumpLayerProperties(std::string*, int indent) const OVERRIDE;
|
|
|
| private:
|
| - explicit IOSurfaceLayerImpl(int);
|
| + IOSurfaceLayerImpl(LayerTreeHostImpl* hostImpl, int id);
|
|
|
| virtual const char* layerTypeAsString() const OVERRIDE;
|
|
|
|
|