| Index: cc/layers/painted_scrollbar_layer.h
|
| diff --git a/cc/layers/painted_scrollbar_layer.h b/cc/layers/painted_scrollbar_layer.h
|
| index ae2b125e785a4f2117a349c55798cfd20472a2d6..dbc581e6f05e2aa4c56aff7e01c3187d11c0cae3 100644
|
| --- a/cc/layers/painted_scrollbar_layer.h
|
| +++ b/cc/layers/painted_scrollbar_layer.h
|
| @@ -22,6 +22,7 @@ class CC_EXPORT PaintedScrollbarLayer : public ScrollbarLayerInterface,
|
| scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override;
|
|
|
| static scoped_refptr<PaintedScrollbarLayer> Create(
|
| + const LayerSettings& settings,
|
| scoped_ptr<Scrollbar> scrollbar,
|
| int scroll_layer_id);
|
|
|
| @@ -47,7 +48,9 @@ class CC_EXPORT PaintedScrollbarLayer : public ScrollbarLayerInterface,
|
| }
|
|
|
| protected:
|
| - PaintedScrollbarLayer(scoped_ptr<Scrollbar> scrollbar, int scroll_layer_id);
|
| + PaintedScrollbarLayer(const LayerSettings& settings,
|
| + scoped_ptr<Scrollbar> scrollbar,
|
| + int scroll_layer_id);
|
| ~PaintedScrollbarLayer() override;
|
|
|
| // For unit tests
|
|
|