From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Thu, 20 Sep 2018 17:49:03 -0700 Subject: scroll_bounce_flag.patch Patch to make scrollBounce option work. diff --git a/content/renderer/render_thread_impl.cc b/content/renderer/render_thread_impl.cc index 231e13b24a57984886b7220f2de4cf866c65a3a6..2df5003b8b18d19ecc01057de4f0a992d5d8836c 100644 --- a/content/renderer/render_thread_impl.cc +++ b/content/renderer/render_thread_impl.cc @@ -1129,11 +1129,11 @@ bool RenderThreadImpl::IsLcdTextEnabled() { } bool RenderThreadImpl::IsElasticOverscrollEnabledOnRoot() { - return is_elastic_overscroll_enabled_on_root_; + return base::CommandLine::ForCurrentProcess()->HasSwitch("scroll-bounce"); } bool RenderThreadImpl::IsElasticOverscrollSupported() { - return is_elastic_overscroll_supported_; + return base::CommandLine::ForCurrentProcess()->HasSwitch("scroll-bounce"); } blink::scheduler::WebThreadScheduler*