| Index: cc/layers/painted_scrollbar_layer_impl.h
|
| diff --git a/cc/layers/painted_scrollbar_layer_impl.h b/cc/layers/painted_scrollbar_layer_impl.h
|
| index 10c6ba63af912e67a446de141e1d06a8903978b6..440893941f44387557379be3da3a4e05484abbd0 100644
|
| --- a/cc/layers/painted_scrollbar_layer_impl.h
|
| +++ b/cc/layers/painted_scrollbar_layer_impl.h
|
| @@ -18,8 +18,12 @@ class ScrollView;
|
|
|
| class CC_EXPORT PaintedScrollbarLayerImpl : public ScrollbarLayerImplBase {
|
| public:
|
| - static std::unique_ptr<PaintedScrollbarLayerImpl>
|
| - Create(LayerTreeImpl* tree_impl, int id, ScrollbarOrientation orientation);
|
| + static std::unique_ptr<PaintedScrollbarLayerImpl> Create(
|
| + LayerTreeImpl* tree_impl,
|
| + int id,
|
| + ScrollbarOrientation orientation,
|
| + bool is_left_side_vertical_scrollbar,
|
| + bool is_overlay);
|
| ~PaintedScrollbarLayerImpl() override;
|
|
|
| // LayerImpl implementation.
|
| @@ -55,7 +59,9 @@ class CC_EXPORT PaintedScrollbarLayerImpl : public ScrollbarLayerImplBase {
|
| protected:
|
| PaintedScrollbarLayerImpl(LayerTreeImpl* tree_impl,
|
| int id,
|
| - ScrollbarOrientation orientation);
|
| + ScrollbarOrientation orientation,
|
| + bool is_left_side_vertical_scrollbar,
|
| + bool is_overlay);
|
|
|
| // ScrollbarLayerImplBase implementation.
|
| int ThumbThickness() const override;
|
|
|