| 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 cc::switches::kEnableGpuBenchmarking, | 197 cc::switches::kEnableGpuBenchmarking, |
| 198 cc::switches::kEnableLayerLists, | 198 cc::switches::kEnableLayerLists, |
| 199 cc::switches::kEnableMainFrameBeforeActivation, | 199 cc::switches::kEnableMainFrameBeforeActivation, |
| 200 cc::switches::kShowCompositedLayerBorders, | 200 cc::switches::kShowCompositedLayerBorders, |
| 201 cc::switches::kShowFPSCounter, | 201 cc::switches::kShowFPSCounter, |
| 202 cc::switches::kShowLayerAnimationBounds, | 202 cc::switches::kShowLayerAnimationBounds, |
| 203 cc::switches::kShowPropertyChangedRects, | 203 cc::switches::kShowPropertyChangedRects, |
| 204 cc::switches::kShowScreenSpaceRects, | 204 cc::switches::kShowScreenSpaceRects, |
| 205 cc::switches::kShowSurfaceDamageRects, | 205 cc::switches::kShowSurfaceDamageRects, |
| 206 cc::switches::kSlowDownRasterScaleFactor, | 206 cc::switches::kSlowDownRasterScaleFactor, |
| 207 cc::switches::kTilingIterator, |
| 207 cc::switches::kUIEnableLayerLists, | 208 cc::switches::kUIEnableLayerLists, |
| 208 cc::switches::kUIShowFPSCounter, | 209 cc::switches::kUIShowFPSCounter, |
| 209 chromeos::switches::kArcAvailable, | 210 chromeos::switches::kArcAvailable, |
| 210 chromeos::switches::kDbusStub, | 211 chromeos::switches::kDbusStub, |
| 211 chromeos::switches::kDisableArcDataWipe, | 212 chromeos::switches::kDisableArcDataWipe, |
| 212 chromeos::switches::kDisableArcOptInVerification, | 213 chromeos::switches::kDisableArcOptInVerification, |
| 213 chromeos::switches::kDisableLoginAnimations, | 214 chromeos::switches::kDisableLoginAnimations, |
| 214 chromeos::switches::kEnableArc, | 215 chromeos::switches::kEnableArc, |
| 215 chromeos::switches::kEnterpriseDisableArc, | 216 chromeos::switches::kEnterpriseDisableArc, |
| 216 chromeos::switches::kEnterpriseEnableForcedReEnrollment, | 217 chromeos::switches::kEnterpriseEnableForcedReEnrollment, |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 388 // Relaunch chrome without session manager on dev box. | 389 // Relaunch chrome without session manager on dev box. |
| 389 ReLaunch(command_line); | 390 ReLaunch(command_line); |
| 390 return; | 391 return; |
| 391 } | 392 } |
| 392 | 393 |
| 393 // ChromeRestartRequest deletes itself after request sent to session manager. | 394 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 394 (new ChromeRestartRequest(command_line.argv()))->Start(); | 395 (new ChromeRestartRequest(command_line.argv()))->Start(); |
| 395 } | 396 } |
| 396 | 397 |
| 397 } // namespace chromeos | 398 } // namespace chromeos |
| OLD | NEW |