| Index: content/child/webthemeengine_impl_android.cc
|
| diff --git a/content/child/webthemeengine_impl_android.cc b/content/child/webthemeengine_impl_android.cc
|
| index 7db2ef4317423a779c9b28dac2cc5406c0bedc1b..fa693b3cf9cb828de50d999ba530dc43c3a85629 100644
|
| --- a/content/child/webthemeengine_impl_android.cc
|
| +++ b/content/child/webthemeengine_impl_android.cc
|
| @@ -173,6 +173,12 @@ blink::WebSize WebThemeEngineImpl::getSize(WebThemeEngine::Part part) {
|
| }
|
|
|
| void WebThemeEngineImpl::getOverlayScrollbarStyle(ScrollbarStyle* style) {
|
| + // TODO(bokan): Android scrollbars on non-composited scrollers don't
|
| + // currently fade out so the fadeOutDuration and Delay Now that this has
|
| + // been added into Blink for other platforms we should plumb that through for
|
| + // Android as well.
|
| + style->fadeOutDelaySeconds = 0;
|
| + style->fadeOutDurationSeconds = 0;
|
| if (getMajorVersion() >= kVersionLollipop) {
|
| style->thumbThickness = 4;
|
| style->scrollbarMargin = 0;
|
|
|