| 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/base_switches.h" | 10 #include "base/base_switches.h" |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 ::switches::kTabCaptureDownscaleQuality, | 140 ::switches::kTabCaptureDownscaleQuality, |
| 141 #if defined(USE_X11) || defined(USE_OZONE) | 141 #if defined(USE_X11) || defined(USE_OZONE) |
| 142 ::switches::kTouchCalibration, | 142 ::switches::kTouchCalibration, |
| 143 #endif | 143 #endif |
| 144 ::switches::kTouchDevices, | 144 ::switches::kTouchDevices, |
| 145 ::switches::kTouchEvents, | 145 ::switches::kTouchEvents, |
| 146 #if defined(ENABLE_TOPCHROME_MD) | 146 #if defined(ENABLE_TOPCHROME_MD) |
| 147 ::switches::kTopChromeMD, | 147 ::switches::kTopChromeMD, |
| 148 #endif | 148 #endif |
| 149 ::switches::kTraceToConsole, | 149 ::switches::kTraceToConsole, |
| 150 ::switches::kUIDisableCompositorAnimationTimelines, | |
| 151 ::switches::kUIDisablePartialSwap, | 150 ::switches::kUIDisablePartialSwap, |
| 152 ::switches::kUIPrioritizeInGpuProcess, | 151 ::switches::kUIPrioritizeInGpuProcess, |
| 153 #if defined(USE_CRAS) | 152 #if defined(USE_CRAS) |
| 154 ::switches::kUseCras, | 153 ::switches::kUseCras, |
| 155 #endif | 154 #endif |
| 156 ::switches::kUseGL, | 155 ::switches::kUseGL, |
| 157 ::switches::kUserDataDir, | 156 ::switches::kUserDataDir, |
| 158 ::switches::kV, | 157 ::switches::kV, |
| 159 ::switches::kVModule, | 158 ::switches::kVModule, |
| 160 ::switches::kEnableWebGLDraftExtensions, | 159 ::switches::kEnableWebGLDraftExtensions, |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 // Relaunch chrome without session manager on dev box. | 352 // Relaunch chrome without session manager on dev box. |
| 354 ReLaunch(command_line); | 353 ReLaunch(command_line); |
| 355 return; | 354 return; |
| 356 } | 355 } |
| 357 | 356 |
| 358 // ChromeRestartRequest deletes itself after request sent to session manager. | 357 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 359 (new ChromeRestartRequest(command_line.argv()))->Start(); | 358 (new ChromeRestartRequest(command_line.argv()))->Start(); |
| 360 } | 359 } |
| 361 | 360 |
| 362 } // namespace chromeos | 361 } // namespace chromeos |
| OLD | NEW |