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

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

Issue 2426793002: Aura overlay scrollbars adjust color for dark backgrounds (Closed)
Patch Set: fix test 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..3451f84ce88d5f9dbc2c564a3add585ae0492b32 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()
+WebScrollbarOverlayColorTheme WebScrollbarImpl::scrollbarOverlayColorTheme()
const {
- return static_cast<WebScrollbar::ScrollbarOverlayStyle>(
- m_scrollbar->getScrollbarOverlayStyle());
+ return static_cast<WebScrollbarOverlayColorTheme>(
+ m_scrollbar->getScrollbarOverlayColorTheme());
}
WebScrollbar::Orientation WebScrollbarImpl::orientation() const {

Powered by Google App Engine
This is Rietveld 408576698