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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 // Please keep these in alphabetical order. Non-UI Compositor switches | 163 // Please keep these in alphabetical order. Non-UI Compositor switches |
164 // here should also be added to | 164 // here should also be added to |
165 // content/browser/renderer_host/render_process_host_impl.cc. | 165 // content/browser/renderer_host/render_process_host_impl.cc. |
166 cc::switches::kBackgroundColorInsteadOfCheckerboard, | 166 cc::switches::kBackgroundColorInsteadOfCheckerboard, |
167 cc::switches::kCompositeToMailbox, | 167 cc::switches::kCompositeToMailbox, |
168 cc::switches::kDisableCompositedAntialiasing, | 168 cc::switches::kDisableCompositedAntialiasing, |
169 cc::switches::kDisableCompositorTouchHitTesting, | 169 cc::switches::kDisableCompositorTouchHitTesting, |
170 cc::switches::kDisableImplSidePainting, | 170 cc::switches::kDisableImplSidePainting, |
171 cc::switches::kDisableMapImage, | 171 cc::switches::kDisableMapImage, |
172 cc::switches::kDisableThreadedAnimation, | 172 cc::switches::kDisableThreadedAnimation, |
| 173 cc::switches::kEnableGPURasterization, |
173 cc::switches::kEnableImplSidePainting, | 174 cc::switches::kEnableImplSidePainting, |
174 cc::switches::kEnableMapImage, | 175 cc::switches::kEnableMapImage, |
175 cc::switches::kEnablePartialSwap, | 176 cc::switches::kEnablePartialSwap, |
176 cc::switches::kEnablePerTilePainting, | 177 cc::switches::kEnablePerTilePainting, |
177 cc::switches::kEnablePinchVirtualViewport, | 178 cc::switches::kEnablePinchVirtualViewport, |
178 cc::switches::kEnableTopControlsPositionCalculation, | 179 cc::switches::kEnableTopControlsPositionCalculation, |
179 cc::switches::kForceDirectLayerDrawing, | 180 cc::switches::kForceDirectLayerDrawing, |
180 cc::switches::kLowResolutionContentsScaleFactor, | 181 cc::switches::kLowResolutionContentsScaleFactor, |
181 cc::switches::kMaxTilesForInterestArea, | 182 cc::switches::kMaxTilesForInterestArea, |
182 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, | 183 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 // Relaunch chrome without session manager on dev box. | 368 // Relaunch chrome without session manager on dev box. |
368 ReLaunch(command_line); | 369 ReLaunch(command_line); |
369 return; | 370 return; |
370 } | 371 } |
371 | 372 |
372 // ChromeRestartRequest deletes itself after request sent to session manager. | 373 // ChromeRestartRequest deletes itself after request sent to session manager. |
373 (new ChromeRestartRequest(command_line))->Start(); | 374 (new ChromeRestartRequest(command_line))->Start(); |
374 } | 375 } |
375 | 376 |
376 } // namespace chromeos | 377 } // namespace chromeos |
OLD | NEW |