| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 ::switches::kGpuSandboxStartEarly, | 130 ::switches::kGpuSandboxStartEarly, |
| 131 ::switches::kNoSandbox, | 131 ::switches::kNoSandbox, |
| 132 ::switches::kNumRasterThreads, | 132 ::switches::kNumRasterThreads, |
| 133 ::switches::kPpapiFlashArgs, | 133 ::switches::kPpapiFlashArgs, |
| 134 ::switches::kPpapiFlashPath, | 134 ::switches::kPpapiFlashPath, |
| 135 ::switches::kPpapiFlashVersion, | 135 ::switches::kPpapiFlashVersion, |
| 136 ::switches::kPpapiInProcess, | 136 ::switches::kPpapiInProcess, |
| 137 ::switches::kRendererStartupDialog, | 137 ::switches::kRendererStartupDialog, |
| 138 ::switches::kRootLayerScrolls, | 138 ::switches::kRootLayerScrolls, |
| 139 ::switches::kEnableShareGroupAsyncTextureUpload, | 139 ::switches::kEnableShareGroupAsyncTextureUpload, |
| 140 ::switches::kTabCaptureUpscaleQuality, | |
| 141 ::switches::kTabCaptureDownscaleQuality, | |
| 142 #if defined(USE_X11) || defined(USE_OZONE) | 140 #if defined(USE_X11) || defined(USE_OZONE) |
| 143 ::switches::kTouchCalibration, | 141 ::switches::kTouchCalibration, |
| 144 #endif | 142 #endif |
| 145 ::switches::kTouchDevices, | 143 ::switches::kTouchDevices, |
| 146 ::switches::kTouchEvents, | 144 ::switches::kTouchEvents, |
| 147 #if defined(ENABLE_TOPCHROME_MD) | 145 #if defined(ENABLE_TOPCHROME_MD) |
| 148 ::switches::kTopChromeMD, | 146 ::switches::kTopChromeMD, |
| 149 #endif | 147 #endif |
| 150 ::switches::kTraceToConsole, | 148 ::switches::kTraceToConsole, |
| 151 ::switches::kUIDisablePartialSwap, | 149 ::switches::kUIDisablePartialSwap, |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 // Relaunch chrome without session manager on dev box. | 352 // Relaunch chrome without session manager on dev box. |
| 355 ReLaunch(command_line); | 353 ReLaunch(command_line); |
| 356 return; | 354 return; |
| 357 } | 355 } |
| 358 | 356 |
| 359 // ChromeRestartRequest deletes itself after request sent to session manager. | 357 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 360 (new ChromeRestartRequest(command_line.argv()))->Start(); | 358 (new ChromeRestartRequest(command_line.argv()))->Start(); |
| 361 } | 359 } |
| 362 | 360 |
| 363 } // namespace chromeos | 361 } // namespace chromeos |
| OLD | NEW |