| 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 <sys/socket.h> | 7 #include <sys/socket.h> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "ash/common/ash_switches.h" | 10 #include "ash/common/ash_switches.h" |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 cc::switches::kShowLayerAnimationBounds, | 207 cc::switches::kShowLayerAnimationBounds, |
| 208 cc::switches::kShowPropertyChangedRects, | 208 cc::switches::kShowPropertyChangedRects, |
| 209 cc::switches::kShowReplicaScreenSpaceRects, | 209 cc::switches::kShowReplicaScreenSpaceRects, |
| 210 cc::switches::kShowScreenSpaceRects, | 210 cc::switches::kShowScreenSpaceRects, |
| 211 cc::switches::kShowSurfaceDamageRects, | 211 cc::switches::kShowSurfaceDamageRects, |
| 212 cc::switches::kSlowDownRasterScaleFactor, | 212 cc::switches::kSlowDownRasterScaleFactor, |
| 213 cc::switches::kUIEnableLayerLists, | 213 cc::switches::kUIEnableLayerLists, |
| 214 cc::switches::kUIShowFPSCounter, | 214 cc::switches::kUIShowFPSCounter, |
| 215 chromeos::switches::kArcAvailable, | 215 chromeos::switches::kArcAvailable, |
| 216 chromeos::switches::kDbusStub, | 216 chromeos::switches::kDbusStub, |
| 217 chromeos::switches::kDbusRealClients, |
| 217 chromeos::switches::kDbusUnstubClients, | 218 chromeos::switches::kDbusUnstubClients, |
| 218 chromeos::switches::kDisableArcDataWipe, | 219 chromeos::switches::kDisableArcDataWipe, |
| 219 chromeos::switches::kDisableArcOptInVerification, | 220 chromeos::switches::kDisableArcOptInVerification, |
| 220 chromeos::switches::kDisableLoginAnimations, | 221 chromeos::switches::kDisableLoginAnimations, |
| 221 chromeos::switches::kEnableArc, | 222 chromeos::switches::kEnableArc, |
| 222 chromeos::switches::kEnterpriseDisableArc, | 223 chromeos::switches::kEnterpriseDisableArc, |
| 223 chromeos::switches::kEnterpriseEnableForcedReEnrollment, | 224 chromeos::switches::kEnterpriseEnableForcedReEnrollment, |
| 224 chromeos::switches::kHasChromeOSDiamondKey, | 225 chromeos::switches::kHasChromeOSDiamondKey, |
| 225 chromeos::switches::kLoginProfile, | 226 chromeos::switches::kLoginProfile, |
| 226 chromeos::switches::kNaturalScrollDefault, | 227 chromeos::switches::kNaturalScrollDefault, |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 // Relaunch chrome without session manager on dev box. | 396 // Relaunch chrome without session manager on dev box. |
| 396 ReLaunch(command_line); | 397 ReLaunch(command_line); |
| 397 return; | 398 return; |
| 398 } | 399 } |
| 399 | 400 |
| 400 // ChromeRestartRequest deletes itself after request sent to session manager. | 401 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 401 (new ChromeRestartRequest(command_line.argv()))->Start(); | 402 (new ChromeRestartRequest(command_line.argv()))->Start(); |
| 402 } | 403 } |
| 403 | 404 |
| 404 } // namespace chromeos | 405 } // namespace chromeos |
| OLD | NEW |