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/chromeos/chromeos_version.h" | 10 #include "base/chromeos/chromeos_version.h" |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 cc::switches::kShowNonOccludingRects, | 153 cc::switches::kShowNonOccludingRects, |
154 cc::switches::kShowOccludingRects, | 154 cc::switches::kShowOccludingRects, |
155 cc::switches::kShowPropertyChangedRects, | 155 cc::switches::kShowPropertyChangedRects, |
156 cc::switches::kShowReplicaScreenSpaceRects, | 156 cc::switches::kShowReplicaScreenSpaceRects, |
157 cc::switches::kShowScreenSpaceRects, | 157 cc::switches::kShowScreenSpaceRects, |
158 cc::switches::kShowSurfaceDamageRects, | 158 cc::switches::kShowSurfaceDamageRects, |
159 cc::switches::kSlowDownRasterScaleFactor, | 159 cc::switches::kSlowDownRasterScaleFactor, |
160 cc::switches::kTraceOverdraw, | 160 cc::switches::kTraceOverdraw, |
161 cc::switches::kUIDisablePartialSwap, | 161 cc::switches::kUIDisablePartialSwap, |
162 cc::switches::kUIEnablePerTilePainting, | 162 cc::switches::kUIEnablePerTilePainting, |
| 163 cc::switches::kUseMapImage, |
163 chromeos::switches::kDbusStub, | 164 chromeos::switches::kDbusStub, |
164 chromeos::switches::kDisableLoginAnimations, | 165 chromeos::switches::kDisableLoginAnimations, |
165 chromeos::switches::kDisableOobeAnimation, | 166 chromeos::switches::kDisableOobeAnimation, |
166 chromeos::switches::kHasChromeOSDiamondKey, | 167 chromeos::switches::kHasChromeOSDiamondKey, |
167 chromeos::switches::kHasChromeOSKeyboard, | 168 chromeos::switches::kHasChromeOSKeyboard, |
168 chromeos::switches::kLoginProfile, | 169 chromeos::switches::kLoginProfile, |
169 chromeos::switches::kNaturalScrollDefault, | 170 chromeos::switches::kNaturalScrollDefault, |
170 chromeos::switches::kEnableExperimentalBluetooth, | 171 chromeos::switches::kEnableExperimentalBluetooth, |
171 chromeos::switches::kUseNewNetworkConfigurationHandlers, | 172 chromeos::switches::kUseNewNetworkConfigurationHandlers, |
172 gfx::switches::kEnableBrowserTextSubpixelPositioning, | 173 gfx::switches::kEnableBrowserTextSubpixelPositioning, |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 // Relaunch chrome without session manager on dev box. | 337 // Relaunch chrome without session manager on dev box. |
337 ReLaunch(command_line); | 338 ReLaunch(command_line); |
338 return; | 339 return; |
339 } | 340 } |
340 | 341 |
341 // ChromeRestartRequest deletes itself after request sent to session manager. | 342 // ChromeRestartRequest deletes itself after request sent to session manager. |
342 (new ChromeRestartRequest(command_line))->Start(); | 343 (new ChromeRestartRequest(command_line))->Start(); |
343 } | 344 } |
344 | 345 |
345 } // namespace chromeos | 346 } // namespace chromeos |
OLD | NEW |