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

Unified Diff: third_party/WebKit/Source/platform/exported/WebScrollbarThemeClientImpl.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/WebScrollbarThemeClientImpl.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebScrollbarThemeClientImpl.cpp b/third_party/WebKit/Source/platform/exported/WebScrollbarThemeClientImpl.cpp
index 25b1eb47bc6f98f35187eee36526f9636807e1fd..2858c79475576c3530cd140f81178ff25545ae81 100644
--- a/third_party/WebKit/Source/platform/exported/WebScrollbarThemeClientImpl.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebScrollbarThemeClientImpl.cpp
@@ -94,10 +94,10 @@ void WebScrollbarThemeClientImpl::invalidateRect(const IntRect&) {
ASSERT_NOT_REACHED();
}
-ScrollbarOverlayStyle WebScrollbarThemeClientImpl::getScrollbarOverlayStyle()
- const {
- return static_cast<ScrollbarOverlayStyle>(
- m_scrollbar.scrollbarOverlayStyle());
+ScrollbarOverlayColorTheme
+WebScrollbarThemeClientImpl::getScrollbarOverlayColorTheme() const {
+ return static_cast<ScrollbarOverlayColorTheme>(
+ m_scrollbar.scrollbarOverlayColorTheme());
}
void WebScrollbarThemeClientImpl::getTickmarks(

Powered by Google App Engine
This is Rietveld 408576698