| Index: ui/keyboard/keyboard_util.cc
|
| diff --git a/ui/keyboard/keyboard_util.cc b/ui/keyboard/keyboard_util.cc
|
| index f5109e244f1f30ee9eb504abec11862fa6c9ea92..3425740a117a2109e5422d895e6923cde0015058 100644
|
| --- a/ui/keyboard/keyboard_util.cc
|
| +++ b/ui/keyboard/keyboard_util.cc
|
| @@ -118,7 +118,11 @@
|
| switches::kDisableVirtualKeyboardOverscroll)) {
|
| return false;
|
| }
|
| - return true;
|
| + if (CommandLine::ForCurrentProcess()->HasSwitch(
|
| + switches::kEnableVirtualKeyboardOverscroll)) {
|
| + return true;
|
| + }
|
| + return false;
|
| }
|
|
|
| bool IsInputViewEnabled() {
|
|
|