| 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 cc::switches::kEnableMapImage, | 175 cc::switches::kEnableMapImage, |
| 176 cc::switches::kEnablePartialSwap, | 176 cc::switches::kEnablePartialSwap, |
| 177 cc::switches::kEnablePerTilePainting, | 177 cc::switches::kEnablePerTilePainting, |
| 178 cc::switches::kEnablePinchVirtualViewport, | 178 cc::switches::kEnablePinchVirtualViewport, |
| 179 cc::switches::kEnableTopControlsPositionCalculation, | 179 cc::switches::kEnableTopControlsPositionCalculation, |
| 180 cc::switches::kMaxTilesForInterestArea, | 180 cc::switches::kMaxTilesForInterestArea, |
| 181 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, | 181 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, |
| 182 cc::switches::kNumRasterThreads, | 182 cc::switches::kNumRasterThreads, |
| 183 cc::switches::kShowCompositedLayerBorders, | 183 cc::switches::kShowCompositedLayerBorders, |
| 184 cc::switches::kShowFPSCounter, | 184 cc::switches::kShowFPSCounter, |
| 185 cc::switches::kShowLayerAnimationBounds, |
| 185 cc::switches::kShowNonOccludingRects, | 186 cc::switches::kShowNonOccludingRects, |
| 186 cc::switches::kShowOccludingRects, | 187 cc::switches::kShowOccludingRects, |
| 187 cc::switches::kShowPropertyChangedRects, | 188 cc::switches::kShowPropertyChangedRects, |
| 188 cc::switches::kShowReplicaScreenSpaceRects, | 189 cc::switches::kShowReplicaScreenSpaceRects, |
| 189 cc::switches::kShowScreenSpaceRects, | 190 cc::switches::kShowScreenSpaceRects, |
| 190 cc::switches::kShowSurfaceDamageRects, | 191 cc::switches::kShowSurfaceDamageRects, |
| 191 cc::switches::kSlowDownRasterScaleFactor, | 192 cc::switches::kSlowDownRasterScaleFactor, |
| 192 cc::switches::kTraceOverdraw, | 193 cc::switches::kTraceOverdraw, |
| 193 cc::switches::kUIDisablePartialSwap, | 194 cc::switches::kUIDisablePartialSwap, |
| 194 cc::switches::kUIEnablePerTilePainting, | 195 cc::switches::kUIEnablePerTilePainting, |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 // Relaunch chrome without session manager on dev box. | 367 // Relaunch chrome without session manager on dev box. |
| 367 ReLaunch(command_line); | 368 ReLaunch(command_line); |
| 368 return; | 369 return; |
| 369 } | 370 } |
| 370 | 371 |
| 371 // ChromeRestartRequest deletes itself after request sent to session manager. | 372 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 372 (new ChromeRestartRequest(command_line))->Start(); | 373 (new ChromeRestartRequest(command_line))->Start(); |
| 373 } | 374 } |
| 374 | 375 |
| 375 } // namespace chromeos | 376 } // namespace chromeos |
| OLD | NEW |