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 659ec40db80335c1e5fb79f22c213d714db48149..55b4bfaaec6d2f38c65269c361954ece02569126 100644
- --- a/content/renderer/render_thread_impl.cc
- +++ b/content/renderer/render_thread_impl.cc
- @@ -1183,7 +1183,7 @@ bool RenderThreadImpl::IsLcdTextEnabled() {
- }
-
- bool RenderThreadImpl::IsElasticOverscrollEnabled() {
- - return is_elastic_overscroll_enabled_;
- + return base::CommandLine::ForCurrentProcess()->HasSwitch("scroll-bounce");
- }
-
- gpu::GpuMemoryBufferManager* RenderThreadImpl::GetGpuMemoryBufferManager() {
|