| Index: cc/scrollbar_layer_impl.h
|
| diff --git a/cc/scrollbar_layer_impl.h b/cc/scrollbar_layer_impl.h
|
| index 6b55aa8b641f3b7801ab617a7493fd207ab78435..a35ae3b28cd2b3e3b588181fc2bc9e1b9e9a436d 100644
|
| --- a/cc/scrollbar_layer_impl.h
|
| +++ b/cc/scrollbar_layer_impl.h
|
| @@ -18,7 +18,7 @@ class ScrollView;
|
|
|
| class CC_EXPORT ScrollbarLayerImpl : public LayerImpl {
|
| public:
|
| - static scoped_ptr<ScrollbarLayerImpl> create(int id);
|
| + static scoped_ptr<ScrollbarLayerImpl> create(LayerTreeHostImpl* hostImpl, int id);
|
| virtual ~ScrollbarLayerImpl();
|
|
|
| ScrollbarGeometryFixedThumb* scrollbarGeometry() const { return m_geometry.get(); }
|
| @@ -45,7 +45,7 @@ public:
|
| virtual void didLoseOutputSurface() OVERRIDE;
|
|
|
| protected:
|
| - explicit ScrollbarLayerImpl(int id);
|
| + ScrollbarLayerImpl(LayerTreeHostImpl* hostImpl, int id);
|
|
|
| private:
|
| // nested class only to avoid namespace problem
|
|
|