| Index: third_party/WebKit/Source/platform/scroll/ScrollbarThemeAura.cpp
|
| diff --git a/third_party/WebKit/Source/platform/scroll/ScrollbarThemeAura.cpp b/third_party/WebKit/Source/platform/scroll/ScrollbarThemeAura.cpp
|
| index 807be853798ba250a667617633988f1a4c85bf13..655c9203cf97f5ad111eb4dff98f233ba3baa4db 100644
|
| --- a/third_party/WebKit/Source/platform/scroll/ScrollbarThemeAura.cpp
|
| +++ b/third_party/WebKit/Source/platform/scroll/ScrollbarThemeAura.cpp
|
| @@ -141,7 +141,8 @@ ScrollbarTheme& ScrollbarTheme::nativeTheme() {
|
|
|
| int ScrollbarThemeAura::scrollbarThickness(ScrollbarControlSize controlSize) {
|
| // Horiz and Vert scrollbars are the same thickness.
|
| - // In unit tests we don't have the mock theme engine (because of layering violations), so we hard code the size (see bug 327470).
|
| + // In unit tests we don't have the mock theme engine (because of layering
|
| + // violations), so we hard code the size (see bug 327470).
|
| if (useMockTheme())
|
| return 15;
|
| IntSize scrollbarSize = Platform::current()->themeEngine()->getSize(
|
| @@ -259,7 +260,8 @@ void ScrollbarThemeAura::paintTickmarks(GraphicsContext& context,
|
| void ScrollbarThemeAura::paintTrackBackground(GraphicsContext& context,
|
| const Scrollbar& scrollbar,
|
| const IntRect& rect) {
|
| - // Just assume a forward track part. We only paint the track as a single piece when there is no thumb.
|
| + // Just assume a forward track part. We only paint the track as a single piece
|
| + // when there is no thumb.
|
| if (!hasThumb(scrollbar) && !rect.isEmpty())
|
| paintTrackPiece(context, scrollbar, rect, ForwardTrackPart);
|
| }
|
|
|