| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/chromeos/login/chrome_restart_request.h" | 5 #include "chrome/browser/chromeos/login/chrome_restart_request.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "ash/ash_switches.h" | 9 #include "ash/ash_switches.h" |
| 10 #include "base/chromeos/chromeos_version.h" | 10 #include "base/chromeos/chromeos_version.h" |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 ::switches::kDisableSeccompSandbox, | 85 ::switches::kDisableSeccompSandbox, |
| 86 ::switches::kDisableThreadedCompositing, | 86 ::switches::kDisableThreadedCompositing, |
| 87 ::switches::kEnableAcceleratedOverflowScroll, | 87 ::switches::kEnableAcceleratedOverflowScroll, |
| 88 ::switches::kEnableCompositingForFixedPosition, | 88 ::switches::kEnableCompositingForFixedPosition, |
| 89 ::switches::kEnableGestureTapHighlight, | 89 ::switches::kEnableGestureTapHighlight, |
| 90 ::switches::kDisableGestureTapHighlight, | 90 ::switches::kDisableGestureTapHighlight, |
| 91 ::switches::kEnableLogging, | 91 ::switches::kEnableLogging, |
| 92 ::switches::kEnablePinch, | 92 ::switches::kEnablePinch, |
| 93 ::switches::kEnableThreadedCompositing, | 93 ::switches::kEnableThreadedCompositing, |
| 94 ::switches::kEnableViewport, | 94 ::switches::kEnableViewport, |
| 95 ::switches::kEnableVsyncNotification, |
| 95 ::switches::kForceDeviceScaleFactor, | 96 ::switches::kForceDeviceScaleFactor, |
| 96 ::switches::kGpuStartupDialog, | 97 ::switches::kGpuStartupDialog, |
| 97 ::switches::kHasChromeOSDiamondKey, | 98 ::switches::kHasChromeOSDiamondKey, |
| 98 ::switches::kHasChromeOSKeyboard, | 99 ::switches::kHasChromeOSKeyboard, |
| 99 ::switches::kLoginProfile, | 100 ::switches::kLoginProfile, |
| 100 ::switches::kNaturalScrollDefault, | 101 ::switches::kNaturalScrollDefault, |
| 101 ::switches::kNoSandbox, | 102 ::switches::kNoSandbox, |
| 102 ::switches::kPpapiFlashArgs, | 103 ::switches::kPpapiFlashArgs, |
| 103 ::switches::kPpapiFlashInProcess, | 104 ::switches::kPpapiFlashInProcess, |
| 104 ::switches::kPpapiFlashPath, | 105 ::switches::kPpapiFlashPath, |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 // Relaunch chrome without session manager on dev box. | 325 // Relaunch chrome without session manager on dev box. |
| 325 ReLaunch(command_line); | 326 ReLaunch(command_line); |
| 326 return; | 327 return; |
| 327 } | 328 } |
| 328 | 329 |
| 329 // ChromeRestartRequest deletes itself after request sent to session manager. | 330 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 330 (new ChromeRestartRequest(command_line))->Start(); | 331 (new ChromeRestartRequest(command_line))->Start(); |
| 331 } | 332 } |
| 332 | 333 |
| 333 } // namespace chromeos | 334 } // namespace chromeos |
| OLD | NEW |