1234567891011121314151617181920 |
- From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
- From: Cheng Zhao <[email protected]>
- 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 e5701fe6ddcf8b9d846373d331e91e705870e523..a64b6d00637a177fd4f6d66b236bed9b0d8d4d8c 100644
- --- a/content/renderer/render_thread_impl.cc
- +++ b/content/renderer/render_thread_impl.cc
- @@ -1310,7 +1310,7 @@ bool RenderThreadImpl::IsLcdTextEnabled() {
- }
-
- bool RenderThreadImpl::IsElasticOverscrollEnabled() {
- - return is_elastic_overscroll_enabled_;
- + return base::CommandLine::ForCurrentProcess()->HasSwitch("scroll-bounce");
- }
-
- gpu::GpuMemoryBufferManager* RenderThreadImpl::GetGpuMemoryBufferManager() {
|