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

Unified Diff: Source/core/platform/chromium/support/WebScrollbarThemeClientImpl.cpp

Issue 23480037: Fix RTL scroll bars being misrendered on Android. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: isLeftSideVerticalScrollbar Created 7 years, 3 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: Source/core/platform/chromium/support/WebScrollbarThemeClientImpl.cpp
diff --git a/Source/core/platform/chromium/support/WebScrollbarThemeClientImpl.cpp b/Source/core/platform/chromium/support/WebScrollbarThemeClientImpl.cpp
index 7a3f5e0239998b995636e0681081a5abe8a12011..bd6780d407d26adaccd39c703b00dfb8b4a82ab0 100644
--- a/Source/core/platform/chromium/support/WebScrollbarThemeClientImpl.cpp
+++ b/Source/core/platform/chromium/support/WebScrollbarThemeClientImpl.cpp
@@ -153,6 +153,11 @@ WebCore::ScrollbarOrientation WebScrollbarThemeClientImpl::orientation() const
return static_cast<WebCore::ScrollbarOrientation>(m_scrollbar->orientation());
}
+bool WebScrollbarThemeClientImpl::isLeftSideVerticalScrollbar() const
+{
+ return m_scrollbar->isLeftSideVerticalScrollbar();
+}
+
int WebScrollbarThemeClientImpl::value() const
{
return m_scrollbar->value();

Powered by Google App Engine
This is Rietveld 408576698