| Index: third_party/WebKit/Source/platform/scroll/ScrollbarThemeOverlay.cpp
|
| diff --git a/third_party/WebKit/Source/platform/scroll/ScrollbarThemeOverlay.cpp b/third_party/WebKit/Source/platform/scroll/ScrollbarThemeOverlay.cpp
|
| index ad0085bc03fa3b83f7b40eee9f8658455afc8529..7108164fc38f332f2351b3470b7defe5dba3502f 100644
|
| --- a/third_party/WebKit/Source/platform/scroll/ScrollbarThemeOverlay.cpp
|
| +++ b/third_party/WebKit/Source/platform/scroll/ScrollbarThemeOverlay.cpp
|
| @@ -129,10 +129,10 @@ int ScrollbarThemeOverlay::thumbThickness(const ScrollbarThemeClient&)
|
|
|
| void ScrollbarThemeOverlay::paintThumb(GraphicsContext& context, const Scrollbar& scrollbar, const IntRect& rect)
|
| {
|
| - if (DrawingRecorder::useCachedDrawingIfPossible(context, scrollbar, DisplayItem::ScrollbarThumb))
|
| + if (DrawingRecorder::useCachedDrawingIfPossible(context, scrollbar, DisplayItem::kScrollbarThumb))
|
| return;
|
|
|
| - DrawingRecorder recorder(context, scrollbar, DisplayItem::ScrollbarThumb, rect);
|
| + DrawingRecorder recorder(context, scrollbar, DisplayItem::kScrollbarThumb, rect);
|
|
|
| IntRect thumbRect = rect;
|
| if (scrollbar.orientation() == HorizontalScrollbar) {
|
|
|