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

Unified Diff: third_party/WebKit/public/platform/WebScrollbar.h

Issue 2426793002: Aura overlay scrollbars adjust color for dark backgrounds (Closed)
Patch Set: rename to ScrollbarOverlayColorTheme 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/public/platform/WebScrollbar.h
diff --git a/third_party/WebKit/public/platform/WebScrollbar.h b/third_party/WebKit/public/platform/WebScrollbar.h
index a921510206fb7d2af93beac9217fc59503971693..fab759d80c4d7f24b037bd1b4774b51c2df9f1a3 100644
--- a/third_party/WebKit/public/platform/WebScrollbar.h
+++ b/third_party/WebKit/public/platform/WebScrollbar.h
@@ -62,10 +62,10 @@ class BLINK_PLATFORM_EXPORT WebScrollbar {
AllParts = 0xffffffff
};
- enum ScrollbarOverlayStyle {
- ScrollbarOverlayStyleDefault,
- ScrollbarOverlayStyleDark,
- ScrollbarOverlayStyleLight
+ enum ScrollbarOverlayColorTheme {
+ ScrollbarOverlayColorThemeDefault,
+ ScrollbarOverlayColorThemeDark,
+ ScrollbarOverlayColorThemeLight
};
virtual ~WebScrollbar() {}
@@ -86,7 +86,7 @@ class BLINK_PLATFORM_EXPORT WebScrollbar {
virtual ScrollbarControlSize controlSize() const = 0;
virtual ScrollbarPart pressedPart() const = 0;
virtual ScrollbarPart hoveredPart() const = 0;
- virtual ScrollbarOverlayStyle scrollbarOverlayStyle() const = 0;
+ virtual ScrollbarOverlayColorTheme scrollbarOverlayColorTheme() const = 0;
virtual bool isCustomScrollbar() const = 0;
virtual Orientation orientation() const = 0;
virtual bool isLeftSideVerticalScrollbar() const = 0;

Powered by Google App Engine
This is Rietveld 408576698