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
|
2022-04-12 13:19:14 +02:00
|
|
|
index 6ee18591ecf3f73388384d82a6530a950ff580e7..c43e94bc7c53ec9573c2e0b869d93bfd73f7051a 100644
|
2018-09-13 22:02:16 -07:00
|
|
|
--- a/content/renderer/render_thread_impl.cc
|
|
|
|
+++ b/content/renderer/render_thread_impl.cc
|
2022-04-12 13:19:14 +02:00
|
|
|
@@ -1313,7 +1313,7 @@ bool RenderThreadImpl::IsLcdTextEnabled() {
|
2018-09-13 22:02:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
bool RenderThreadImpl::IsElasticOverscrollEnabled() {
|
|
|
|
- return is_elastic_overscroll_enabled_;
|
|
|
|
+ return base::CommandLine::ForCurrentProcess()->HasSwitch("scroll-bounce");
|
|
|
|
}
|
|
|
|
|
2021-05-19 16:15:47 -07:00
|
|
|
gpu::GpuMemoryBufferManager* RenderThreadImpl::GetGpuMemoryBufferManager() {
|