| 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/common/ash_switches.h" | 9 #include "ash/common/ash_switches.h" |
| 10 #include "base/base_switches.h" | 10 #include "base/base_switches.h" |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 ::switches::kDisableSeccompFilterSandbox, | 98 ::switches::kDisableSeccompFilterSandbox, |
| 99 ::switches::kDisableSetuidSandbox, | 99 ::switches::kDisableSetuidSandbox, |
| 100 ::switches::kDisableThreadedScrolling, | 100 ::switches::kDisableThreadedScrolling, |
| 101 ::switches::kDisableTouchDragDrop, | 101 ::switches::kDisableTouchDragDrop, |
| 102 ::switches::kDisableZeroCopy, | 102 ::switches::kDisableZeroCopy, |
| 103 ::switches::kEnableBlinkFeatures, | 103 ::switches::kEnableBlinkFeatures, |
| 104 ::switches::kDisableDisplayList2dCanvas, | 104 ::switches::kDisableDisplayList2dCanvas, |
| 105 ::switches::kEnableDisplayList2dCanvas, | 105 ::switches::kEnableDisplayList2dCanvas, |
| 106 ::switches::kForceDisplayList2dCanvas, | 106 ::switches::kForceDisplayList2dCanvas, |
| 107 ::switches::kEnableCanvas2dDynamicRenderingModeSwitching, | 107 ::switches::kEnableCanvas2dDynamicRenderingModeSwitching, |
| 108 ::switches::kEnableColorCorrectRendering, |
| 108 ::switches::kDisableGpuSandbox, | 109 ::switches::kDisableGpuSandbox, |
| 109 ::switches::kEnableDistanceFieldText, | 110 ::switches::kEnableDistanceFieldText, |
| 110 ::switches::kEnableGpuAsyncWorkerContext, | 111 ::switches::kEnableGpuAsyncWorkerContext, |
| 111 ::switches::kEnableGpuMemoryBufferVideoFrames, | 112 ::switches::kEnableGpuMemoryBufferVideoFrames, |
| 112 ::switches::kEnableGpuRasterization, | 113 ::switches::kEnableGpuRasterization, |
| 113 ::switches::kEnableImageColorProfiles, | |
| 114 ::switches::kEnableLogging, | 114 ::switches::kEnableLogging, |
| 115 ::switches::kEnableLowResTiling, | 115 ::switches::kEnableLowResTiling, |
| 116 ::switches::kDisablePartialRaster, | 116 ::switches::kDisablePartialRaster, |
| 117 ::switches::kEnablePartialRaster, | 117 ::switches::kEnablePartialRaster, |
| 118 ::switches::kEnablePinch, | 118 ::switches::kEnablePinch, |
| 119 ::switches::kEnablePreferCompositingToLCDText, | 119 ::switches::kEnablePreferCompositingToLCDText, |
| 120 ::switches::kEnableRGBA4444Textures, | 120 ::switches::kEnableRGBA4444Textures, |
| 121 ::switches::kEnableSlimmingPaintV2, | 121 ::switches::kEnableSlimmingPaintV2, |
| 122 ::switches::kEnableTouchDragDrop, | 122 ::switches::kEnableTouchDragDrop, |
| 123 ::switches::kEnableUseZoomForDSF, | 123 ::switches::kEnableUseZoomForDSF, |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 // Relaunch chrome without session manager on dev box. | 363 // Relaunch chrome without session manager on dev box. |
| 364 ReLaunch(command_line); | 364 ReLaunch(command_line); |
| 365 return; | 365 return; |
| 366 } | 366 } |
| 367 | 367 |
| 368 // ChromeRestartRequest deletes itself after request sent to session manager. | 368 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 369 (new ChromeRestartRequest(command_line.argv()))->Start(); | 369 (new ChromeRestartRequest(command_line.argv()))->Start(); |
| 370 } | 370 } |
| 371 | 371 |
| 372 } // namespace chromeos | 372 } // namespace chromeos |
| OLD | NEW |