Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(943)

Unified Diff: third_party/WebKit/Source/platform/scroll/ScrollbarThemeAura.cpp

Issue 2387053003: reflow comments in platform/{mediastream,scroll} (Closed)
Patch Set: blah Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}

Powered by Google App Engine
This is Rietveld 408576698