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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 ash::switches::kAshGuestWallpaperSmall, | 154 ash::switches::kAshGuestWallpaperSmall, |
155 ash::switches::kAshHostWindowBounds, | 155 ash::switches::kAshHostWindowBounds, |
156 ash::switches::kAshTouchHud, | 156 ash::switches::kAshTouchHud, |
157 ash::switches::kAuraLegacyPowerButton, | 157 ash::switches::kAuraLegacyPowerButton, |
158 // Please keep these in alphabetical order. Non-UI Compositor switches | 158 // Please keep these in alphabetical order. Non-UI Compositor switches |
159 // here should also be added to | 159 // here should also be added to |
160 // content/browser/renderer_host/render_process_host_impl.cc. | 160 // content/browser/renderer_host/render_process_host_impl.cc. |
161 cc::switches::kBackgroundColorInsteadOfCheckerboard, | 161 cc::switches::kBackgroundColorInsteadOfCheckerboard, |
162 cc::switches::kCompositeToMailbox, | 162 cc::switches::kCompositeToMailbox, |
163 cc::switches::kDisableCompositedAntialiasing, | 163 cc::switches::kDisableCompositedAntialiasing, |
| 164 cc::switches::kDisableCompositorTouchHitTesting, |
164 cc::switches::kDisableImplSidePainting, | 165 cc::switches::kDisableImplSidePainting, |
165 cc::switches::kDisableMapImage, | 166 cc::switches::kDisableMapImage, |
166 cc::switches::kDisableThreadedAnimation, | 167 cc::switches::kDisableThreadedAnimation, |
167 cc::switches::kEnableImplSidePainting, | 168 cc::switches::kEnableImplSidePainting, |
168 cc::switches::kEnableMapImage, | 169 cc::switches::kEnableMapImage, |
169 cc::switches::kEnablePartialSwap, | 170 cc::switches::kEnablePartialSwap, |
170 cc::switches::kEnablePerTilePainting, | 171 cc::switches::kEnablePerTilePainting, |
171 cc::switches::kEnablePinchVirtualViewport, | 172 cc::switches::kEnablePinchVirtualViewport, |
172 cc::switches::kEnableTopControlsPositionCalculation, | 173 cc::switches::kEnableTopControlsPositionCalculation, |
173 cc::switches::kForceDirectLayerDrawing, | 174 cc::switches::kForceDirectLayerDrawing, |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 // Relaunch chrome without session manager on dev box. | 362 // Relaunch chrome without session manager on dev box. |
362 ReLaunch(command_line); | 363 ReLaunch(command_line); |
363 return; | 364 return; |
364 } | 365 } |
365 | 366 |
366 // ChromeRestartRequest deletes itself after request sent to session manager. | 367 // ChromeRestartRequest deletes itself after request sent to session manager. |
367 (new ChromeRestartRequest(command_line))->Start(); | 368 (new ChromeRestartRequest(command_line))->Start(); |
368 } | 369 } |
369 | 370 |
370 } // namespace chromeos | 371 } // namespace chromeos |
OLD | NEW |