| 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/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 cc::switches::kShowNonOccludingRects, | 189 cc::switches::kShowNonOccludingRects, |
| 190 cc::switches::kShowOccludingRects, | 190 cc::switches::kShowOccludingRects, |
| 191 cc::switches::kShowPropertyChangedRects, | 191 cc::switches::kShowPropertyChangedRects, |
| 192 cc::switches::kShowReplicaScreenSpaceRects, | 192 cc::switches::kShowReplicaScreenSpaceRects, |
| 193 cc::switches::kShowScreenSpaceRects, | 193 cc::switches::kShowScreenSpaceRects, |
| 194 cc::switches::kShowSurfaceDamageRects, | 194 cc::switches::kShowSurfaceDamageRects, |
| 195 cc::switches::kSlowDownRasterScaleFactor, | 195 cc::switches::kSlowDownRasterScaleFactor, |
| 196 cc::switches::kUIDisablePartialSwap, | 196 cc::switches::kUIDisablePartialSwap, |
| 197 chromeos::switches::kConsumerDeviceManagementUrl, | 197 chromeos::switches::kConsumerDeviceManagementUrl, |
| 198 chromeos::switches::kDbusStub, | 198 chromeos::switches::kDbusStub, |
| 199 chromeos::switches::kDbusUnstubClients, |
| 199 chromeos::switches::kDisableLoginAnimations, | 200 chromeos::switches::kDisableLoginAnimations, |
| 200 chromeos::switches::kEnableConsumerManagement, | 201 chromeos::switches::kEnableConsumerManagement, |
| 201 chromeos::switches::kEnterpriseEnableForcedReEnrollment, | 202 chromeos::switches::kEnterpriseEnableForcedReEnrollment, |
| 202 chromeos::switches::kHasChromeOSDiamondKey, | 203 chromeos::switches::kHasChromeOSDiamondKey, |
| 203 chromeos::switches::kHasChromeOSKeyboard, | 204 chromeos::switches::kHasChromeOSKeyboard, |
| 204 chromeos::switches::kLoginProfile, | 205 chromeos::switches::kLoginProfile, |
| 205 chromeos::switches::kNaturalScrollDefault, | 206 chromeos::switches::kNaturalScrollDefault, |
| 206 chromeos::switches::kSystemInDevMode, | 207 chromeos::switches::kSystemInDevMode, |
| 207 policy::switches::kDeviceManagementUrl, | 208 policy::switches::kDeviceManagementUrl, |
| 208 ::switches::kEnableBrowserTextSubpixelPositioning, | 209 ::switches::kEnableBrowserTextSubpixelPositioning, |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 // Relaunch chrome without session manager on dev box. | 371 // Relaunch chrome without session manager on dev box. |
| 371 ReLaunch(command_line); | 372 ReLaunch(command_line); |
| 372 return; | 373 return; |
| 373 } | 374 } |
| 374 | 375 |
| 375 // ChromeRestartRequest deletes itself after request sent to session manager. | 376 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 376 (new ChromeRestartRequest(command_line))->Start(); | 377 (new ChromeRestartRequest(command_line))->Start(); |
| 377 } | 378 } |
| 378 | 379 |
| 379 } // namespace chromeos | 380 } // namespace chromeos |
| OLD | NEW |