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

Unified Diff: third_party/WebKit/Source/platform/exported/WebScrollbarImpl.cpp

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/Source/platform/exported/WebScrollbarImpl.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebScrollbarImpl.cpp b/third_party/WebKit/Source/platform/exported/WebScrollbarImpl.cpp
index 97575e6e7b7754aaa2a86a85cad8e1af10d66e78..e915d86d1c2679425da5a35be76ab376b4423320 100644
--- a/third_party/WebKit/Source/platform/exported/WebScrollbarImpl.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebScrollbarImpl.cpp
@@ -88,10 +88,10 @@ WebScrollbar::ScrollbarPart WebScrollbarImpl::hoveredPart() const {
return static_cast<WebScrollbar::ScrollbarPart>(m_scrollbar->hoveredPart());
}
-WebScrollbar::ScrollbarOverlayStyle WebScrollbarImpl::scrollbarOverlayStyle()
- const {
- return static_cast<WebScrollbar::ScrollbarOverlayStyle>(
- m_scrollbar->getScrollbarOverlayStyle());
+WebScrollbar::ScrollbarOverlayColorTheme
+WebScrollbarImpl::scrollbarOverlayColorTheme() const {
+ return static_cast<WebScrollbar::ScrollbarOverlayColorTheme>(
+ m_scrollbar->getScrollbarOverlayColorTheme());
}
WebScrollbar::Orientation WebScrollbarImpl::orientation() const {

Powered by Google App Engine
This is Rietveld 408576698