| Index: chrome/browser/chromeos/login/chrome_restart_request.cc
|
| diff --git a/chrome/browser/chromeos/login/chrome_restart_request.cc b/chrome/browser/chromeos/login/chrome_restart_request.cc
|
| index 531ef29bcd19bb6a1177ed48a3b4232ec31c8b6e..19ad0909d759060b591435932c32d5b046a57359 100644
|
| --- a/chrome/browser/chromeos/login/chrome_restart_request.cc
|
| +++ b/chrome/browser/chromeos/login/chrome_restart_request.cc
|
| @@ -72,6 +72,7 @@ std::string DeriveCommandLine(const GURL& start_url,
|
| ::switches::kDisableAcceleratedOverflowScroll,
|
| ::switches::kDisableAcceleratedPlugins,
|
| ::switches::kDisableAcceleratedVideoDecode,
|
| + ::switches::kDisableBrowserPluginCompositing,
|
| ::switches::kDisableEncryptedMedia,
|
| ::switches::kDisableForceCompositingMode,
|
| ::switches::kDisableGpuWatchdog,
|
| @@ -83,7 +84,6 @@ std::string DeriveCommandLine(const GURL& start_url,
|
| ::switches::kDisableSeccompFilterSandbox,
|
| ::switches::kDisableSeccompSandbox,
|
| ::switches::kEnableAcceleratedOverflowScroll,
|
| - ::switches::kEnableBrowserPluginCompositing,
|
| ::switches::kEnableCompositingForFixedPosition,
|
| ::switches::kEnableGestureTapHighlight,
|
| ::switches::kEnableLogging,
|
| @@ -284,10 +284,6 @@ std::string GetKioskAppCommandLine(const std::string& app_id) {
|
| app_switches.SetString(::switches::kForceAppMode, std::string());
|
| app_switches.SetString(::switches::kAppId, app_id);
|
| app_switches.SetString(::switches::kLoginUser, std::string());
|
| - // TODO(zelidrag): Move the next switch to /sbin/session_manager_setup.sh
|
| - // instead once http://crbug.com/179256 is resolved.
|
| - app_switches.SetString(::switches::kEnableBrowserPluginCompositing,
|
| - std::string());
|
|
|
| const CommandLine& browser_command_line = *CommandLine::ForCurrentProcess();
|
| CommandLine new_command_line(browser_command_line.GetProgram());
|
|
|