| Index: content/browser/android/content_startup_flags.cc
|
| diff --git a/content/browser/android/content_startup_flags.cc b/content/browser/android/content_startup_flags.cc
|
| index 065b3e70b3fdb0dfa4992048117cc8fa2a9f9bef..590fbb4a39e182cbbfbc6d2c17e086134df10122 100644
|
| --- a/content/browser/android/content_startup_flags.cc
|
| +++ b/content/browser/android/content_startup_flags.cc
|
| @@ -62,6 +62,11 @@ void SetContentCommandLineFlags(int max_render_process_count,
|
| parsed_command_line->AppendSwitch(switches::kEnableGestureTapHighlight);
|
| parsed_command_line->AppendSwitch(switches::kEnablePinch);
|
| parsed_command_line->AppendSwitch(switches::kEnableOverscrollNotifications);
|
| + parsed_command_line->AppendSwitch(switches::kUseSolidColorScrollbars);
|
| + parsed_command_line->AppendSwitch(switches::kEnableOverlayScrollbars);
|
| + std::string scrollbar_color_flag(cc::switches::kSolidColorScrollbarColor);
|
| + scrollbar_color_flag.append("=0X80808080");
|
| + parsed_command_line->AppendSwitch(scrollbar_color_flag);
|
|
|
| // Run the GPU service as a thread in the browser instead of as a
|
| // standalone process.
|
|
|