| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 ::switches::kPpapiFlashPath, | 100 ::switches::kPpapiFlashPath, |
| 101 ::switches::kPpapiFlashVersion, | 101 ::switches::kPpapiFlashVersion, |
| 102 ::switches::kPpapiOutOfProcess, | 102 ::switches::kPpapiOutOfProcess, |
| 103 ::switches::kRendererStartupDialog, | 103 ::switches::kRendererStartupDialog, |
| 104 #if defined(USE_XI2_MT) | 104 #if defined(USE_XI2_MT) |
| 105 ::switches::kTouchCalibration, | 105 ::switches::kTouchCalibration, |
| 106 #endif | 106 #endif |
| 107 ::switches::kTouchDevices, | 107 ::switches::kTouchDevices, |
| 108 ::switches::kTouchEvents, | 108 ::switches::kTouchEvents, |
| 109 ::switches::kTouchOptimizedUI, | 109 ::switches::kTouchOptimizedUI, |
| 110 ::switches::kOldCheckboxStyle, | |
| 111 ::switches::kUIEnablePartialSwap, | 110 ::switches::kUIEnablePartialSwap, |
| 112 ::switches::kUIEnableThreadedCompositing, | 111 ::switches::kUIEnableThreadedCompositing, |
| 113 ::switches::kUIPrioritizeInGpuProcess, | 112 ::switches::kUIPrioritizeInGpuProcess, |
| 114 #if defined(USE_CRAS) | 113 #if defined(USE_CRAS) |
| 115 ::switches::kUseCras, | 114 ::switches::kUseCras, |
| 116 #endif | 115 #endif |
| 117 ::switches::kUseGL, | 116 ::switches::kUseGL, |
| 118 ::switches::kUserDataDir, | 117 ::switches::kUserDataDir, |
| 119 ::switches::kUseExynosVda, | 118 ::switches::kUseExynosVda, |
| 120 ash::switches::kAshTouchHud, | 119 ash::switches::kAshTouchHud, |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 // Relaunch chrome without session manager on dev box. | 295 // Relaunch chrome without session manager on dev box. |
| 297 ReLaunch(command_line); | 296 ReLaunch(command_line); |
| 298 return; | 297 return; |
| 299 } | 298 } |
| 300 | 299 |
| 301 // ChromeRestartRequest deletes itself after request sent to session manager. | 300 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 302 (new ChromeRestartRequest(command_line))->Start(); | 301 (new ChromeRestartRequest(command_line))->Start(); |
| 303 } | 302 } |
| 304 | 303 |
| 305 } // namespace chromeos | 304 } // namespace chromeos |
| OLD | NEW |