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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 ash::switches::kAshDefaultWallpaperLarge, | 150 ash::switches::kAshDefaultWallpaperLarge, |
151 ash::switches::kAshDefaultWallpaperSmall, | 151 ash::switches::kAshDefaultWallpaperSmall, |
152 ash::switches::kAshGuestWallpaperLarge, | 152 ash::switches::kAshGuestWallpaperLarge, |
153 ash::switches::kAshGuestWallpaperSmall, | 153 ash::switches::kAshGuestWallpaperSmall, |
154 ash::switches::kAshHostWindowBounds, | 154 ash::switches::kAshHostWindowBounds, |
155 ash::switches::kAshTouchHud, | 155 ash::switches::kAshTouchHud, |
156 ash::switches::kAuraLegacyPowerButton, | 156 ash::switches::kAuraLegacyPowerButton, |
157 // Please keep these in alphabetical order. Non-UI Compositor switches | 157 // Please keep these in alphabetical order. Non-UI Compositor switches |
158 // here should also be added to | 158 // here should also be added to |
159 // content/browser/renderer_host/render_process_host_impl.cc. | 159 // content/browser/renderer_host/render_process_host_impl.cc. |
160 cc::switches::kBackgroundColorInsteadOfCheckerboard, | |
161 cc::switches::kCompositeToMailbox, | 160 cc::switches::kCompositeToMailbox, |
162 cc::switches::kDisableCompositedAntialiasing, | 161 cc::switches::kDisableCompositedAntialiasing, |
163 cc::switches::kDisableCompositorTouchHitTesting, | 162 cc::switches::kDisableCompositorTouchHitTesting, |
164 cc::switches::kDisableGPURasterization, | 163 cc::switches::kDisableGPURasterization, |
165 cc::switches::kDisableImplSidePainting, | 164 cc::switches::kDisableImplSidePainting, |
166 cc::switches::kDisableMapImage, | 165 cc::switches::kDisableMapImage, |
167 cc::switches::kDisableThreadedAnimation, | 166 cc::switches::kDisableThreadedAnimation, |
168 cc::switches::kEnableGpuBenchmarking, | 167 cc::switches::kEnableGpuBenchmarking, |
169 cc::switches::kEnableGPURasterization, | 168 cc::switches::kEnableGPURasterization, |
170 cc::switches::kEnableImplSidePainting, | 169 cc::switches::kEnableImplSidePainting, |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
352 // Relaunch chrome without session manager on dev box. | 351 // Relaunch chrome without session manager on dev box. |
353 ReLaunch(command_line); | 352 ReLaunch(command_line); |
354 return; | 353 return; |
355 } | 354 } |
356 | 355 |
357 // ChromeRestartRequest deletes itself after request sent to session manager. | 356 // ChromeRestartRequest deletes itself after request sent to session manager. |
358 (new ChromeRestartRequest(command_line))->Start(); | 357 (new ChromeRestartRequest(command_line))->Start(); |
359 } | 358 } |
360 | 359 |
361 } // namespace chromeos | 360 } // namespace chromeos |
OLD | NEW |