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