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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 cc::switches::kEnableLayerLists, | 201 cc::switches::kEnableLayerLists, |
202 cc::switches::kEnableMainFrameBeforeActivation, | 202 cc::switches::kEnableMainFrameBeforeActivation, |
203 cc::switches::kEnableTrueColorRendering, | 203 cc::switches::kEnableTrueColorRendering, |
204 cc::switches::kShowCompositedLayerBorders, | 204 cc::switches::kShowCompositedLayerBorders, |
205 cc::switches::kShowFPSCounter, | 205 cc::switches::kShowFPSCounter, |
206 cc::switches::kShowLayerAnimationBounds, | 206 cc::switches::kShowLayerAnimationBounds, |
207 cc::switches::kShowPropertyChangedRects, | 207 cc::switches::kShowPropertyChangedRects, |
208 cc::switches::kShowScreenSpaceRects, | 208 cc::switches::kShowScreenSpaceRects, |
209 cc::switches::kShowSurfaceDamageRects, | 209 cc::switches::kShowSurfaceDamageRects, |
210 cc::switches::kSlowDownRasterScaleFactor, | 210 cc::switches::kSlowDownRasterScaleFactor, |
| 211 cc::switches::kTilingIterator, |
211 cc::switches::kUIEnableLayerLists, | 212 cc::switches::kUIEnableLayerLists, |
212 cc::switches::kUIShowFPSCounter, | 213 cc::switches::kUIShowFPSCounter, |
213 chromeos::switches::kArcAvailability, | 214 chromeos::switches::kArcAvailability, |
214 chromeos::switches::kArcAvailable, | 215 chromeos::switches::kArcAvailable, |
215 chromeos::switches::kDbusStub, | 216 chromeos::switches::kDbusStub, |
216 chromeos::switches::kDisableArcDataWipe, | 217 chromeos::switches::kDisableArcDataWipe, |
217 chromeos::switches::kDisableArcOptInVerification, | 218 chromeos::switches::kDisableArcOptInVerification, |
218 chromeos::switches::kDisableLoginAnimations, | 219 chromeos::switches::kDisableLoginAnimations, |
219 chromeos::switches::kEnableArc, | 220 chromeos::switches::kEnableArc, |
220 chromeos::switches::kEnterpriseDisableArc, | 221 chromeos::switches::kEnterpriseDisableArc, |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
393 // Relaunch chrome without session manager on dev box. | 394 // Relaunch chrome without session manager on dev box. |
394 ReLaunch(command_line); | 395 ReLaunch(command_line); |
395 return; | 396 return; |
396 } | 397 } |
397 | 398 |
398 // ChromeRestartRequest deletes itself after request sent to session manager. | 399 // ChromeRestartRequest deletes itself after request sent to session manager. |
399 (new ChromeRestartRequest(command_line.argv()))->Start(); | 400 (new ChromeRestartRequest(command_line.argv()))->Start(); |
400 } | 401 } |
401 | 402 |
402 } // namespace chromeos | 403 } // namespace chromeos |
OLD | NEW |