| Index: cc/layers/solid_color_scrollbar_layer_impl.h
|
| diff --git a/cc/layers/solid_color_scrollbar_layer_impl.h b/cc/layers/solid_color_scrollbar_layer_impl.h
|
| index 205496a6e72be02418bfea8356296c6aa3611e31..4cea04b4abc707f708de822614dcc7d2b04a623b 100644
|
| --- a/cc/layers/solid_color_scrollbar_layer_impl.h
|
| +++ b/cc/layers/solid_color_scrollbar_layer_impl.h
|
| @@ -17,6 +17,7 @@ class CC_EXPORT SolidColorScrollbarLayerImpl : public ScrollbarLayerImplBase {
|
| int id,
|
| ScrollbarOrientation orientation,
|
| int thumb_thickness,
|
| + int track_start,
|
| bool is_left_side_vertical_scrollbar,
|
| bool is_overlay);
|
| virtual ~SolidColorScrollbarLayerImpl();
|
| @@ -35,6 +36,7 @@ class CC_EXPORT SolidColorScrollbarLayerImpl : public ScrollbarLayerImplBase {
|
| int id,
|
| ScrollbarOrientation orientation,
|
| int thumb_thickness,
|
| + int track_start,
|
| bool is_left_side_vertical_scrollbar,
|
| bool is_overlay);
|
|
|
| @@ -47,6 +49,7 @@ class CC_EXPORT SolidColorScrollbarLayerImpl : public ScrollbarLayerImplBase {
|
|
|
| private:
|
| int thumb_thickness_;
|
| + int track_start_;
|
| SkColor color_;
|
| };
|
|
|
|
|