| 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/common/ash_switches.h" | 9 #include "ash/common/ash_switches.h" |
| 10 #include "base/base_switches.h" | 10 #include "base/base_switches.h" |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 cc::switches::kShowPropertyChangedRects, | 201 cc::switches::kShowPropertyChangedRects, |
| 202 cc::switches::kShowReplicaScreenSpaceRects, | 202 cc::switches::kShowReplicaScreenSpaceRects, |
| 203 cc::switches::kShowScreenSpaceRects, | 203 cc::switches::kShowScreenSpaceRects, |
| 204 cc::switches::kShowSurfaceDamageRects, | 204 cc::switches::kShowSurfaceDamageRects, |
| 205 cc::switches::kSlowDownRasterScaleFactor, | 205 cc::switches::kSlowDownRasterScaleFactor, |
| 206 cc::switches::kUIEnableLayerLists, | 206 cc::switches::kUIEnableLayerLists, |
| 207 cc::switches::kUIShowFPSCounter, | 207 cc::switches::kUIShowFPSCounter, |
| 208 chromeos::switches::kConsumerDeviceManagementUrl, | 208 chromeos::switches::kConsumerDeviceManagementUrl, |
| 209 chromeos::switches::kDbusStub, | 209 chromeos::switches::kDbusStub, |
| 210 chromeos::switches::kDbusUnstubClients, | 210 chromeos::switches::kDbusUnstubClients, |
| 211 chromeos::switches::kDisableArcDataWipe, |
| 211 chromeos::switches::kDisableArcOptInVerification, | 212 chromeos::switches::kDisableArcOptInVerification, |
| 212 chromeos::switches::kDisableLoginAnimations, | 213 chromeos::switches::kDisableLoginAnimations, |
| 213 chromeos::switches::kEnableArc, | 214 chromeos::switches::kEnableArc, |
| 214 chromeos::switches::kEnableConsumerManagement, | 215 chromeos::switches::kEnableConsumerManagement, |
| 215 chromeos::switches::kEnterpriseDisableArc, | 216 chromeos::switches::kEnterpriseDisableArc, |
| 216 chromeos::switches::kEnterpriseEnableForcedReEnrollment, | 217 chromeos::switches::kEnterpriseEnableForcedReEnrollment, |
| 217 chromeos::switches::kHasChromeOSDiamondKey, | 218 chromeos::switches::kHasChromeOSDiamondKey, |
| 218 chromeos::switches::kLoginProfile, | 219 chromeos::switches::kLoginProfile, |
| 219 chromeos::switches::kNaturalScrollDefault, | 220 chromeos::switches::kNaturalScrollDefault, |
| 220 chromeos::switches::kSystemInDevMode, | 221 chromeos::switches::kSystemInDevMode, |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 // Relaunch chrome without session manager on dev box. | 359 // Relaunch chrome without session manager on dev box. |
| 359 ReLaunch(command_line); | 360 ReLaunch(command_line); |
| 360 return; | 361 return; |
| 361 } | 362 } |
| 362 | 363 |
| 363 // ChromeRestartRequest deletes itself after request sent to session manager. | 364 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 364 (new ChromeRestartRequest(command_line.argv()))->Start(); | 365 (new ChromeRestartRequest(command_line.argv()))->Start(); |
| 365 } | 366 } |
| 366 | 367 |
| 367 } // namespace chromeos | 368 } // namespace chromeos |
| OLD | NEW |