2018-10-24 11:24:11 -07:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2018-09-20 17:30:26 -07:00
|
|
|
From: Cheng Zhao <zcbenz@gmail.com>
|
|
|
|
Date: Thu, 20 Sep 2018 17:49:03 -0700
|
|
|
|
Subject: scroll_bounce_flag.patch
|
|
|
|
|
|
|
|
Patch to make scrollBounce option work.
|
|
|
|
|
2018-09-13 22:02:16 -07:00
|
|
|
diff --git a/content/renderer/render_thread_impl.cc b/content/renderer/render_thread_impl.cc
|
2020-03-03 13:35:05 -08:00
|
|
|
index 9aa93fb7fa4c043f8be337de88bfc627af721b07..5d8b63a0db78f17254ab461cc3b3ebe64213969e 100644
|
2018-09-13 22:02:16 -07:00
|
|
|
--- a/content/renderer/render_thread_impl.cc
|
|
|
|
+++ b/content/renderer/render_thread_impl.cc
|
2020-03-03 13:35:05 -08:00
|
|
|
@@ -1345,7 +1345,7 @@ bool RenderThreadImpl::IsGpuMemoryBufferCompositorResourcesEnabled() {
|
2018-09-13 22:02:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
bool RenderThreadImpl::IsElasticOverscrollEnabled() {
|
|
|
|
- return is_elastic_overscroll_enabled_;
|
|
|
|
+ return base::CommandLine::ForCurrentProcess()->HasSwitch("scroll-bounce");
|
|
|
|
}
|
|
|
|
|
2018-09-20 17:30:26 -07:00
|
|
|
bool RenderThreadImpl::IsUseZoomForDSFEnabled() {
|