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 <sys/socket.h> | 7 #include <sys/socket.h> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "ash/common/ash_switches.h" | 10 #include "ash/common/ash_switches.h" |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 ::switches::kDisableGpuWatchdog, | 92 ::switches::kDisableGpuWatchdog, |
93 ::switches::kDisableGpuCompositing, | 93 ::switches::kDisableGpuCompositing, |
94 ::switches::kDisableGpuRasterization, | 94 ::switches::kDisableGpuRasterization, |
95 ::switches::kDisableLowResTiling, | 95 ::switches::kDisableLowResTiling, |
96 ::switches::kDisablePepper3DImageChromium, | 96 ::switches::kDisablePepper3DImageChromium, |
97 ::switches::kDisablePreferCompositingToLCDText, | 97 ::switches::kDisablePreferCompositingToLCDText, |
98 ::switches::kDisablePanelFitting, | 98 ::switches::kDisablePanelFitting, |
99 ::switches::kDisableRGBA4444Textures, | 99 ::switches::kDisableRGBA4444Textures, |
100 ::switches::kDisableSeccompFilterSandbox, | 100 ::switches::kDisableSeccompFilterSandbox, |
101 ::switches::kDisableSetuidSandbox, | 101 ::switches::kDisableSetuidSandbox, |
| 102 ::switches::kDisableSlimmingPaintInvalidation, |
102 ::switches::kDisableThreadedScrolling, | 103 ::switches::kDisableThreadedScrolling, |
103 ::switches::kDisableTouchDragDrop, | 104 ::switches::kDisableTouchDragDrop, |
104 ::switches::kDisableZeroCopy, | 105 ::switches::kDisableZeroCopy, |
105 ::switches::kEnableBlinkFeatures, | 106 ::switches::kEnableBlinkFeatures, |
106 ::switches::kDisableDisplayList2dCanvas, | 107 ::switches::kDisableDisplayList2dCanvas, |
107 ::switches::kEnableDisplayList2dCanvas, | 108 ::switches::kEnableDisplayList2dCanvas, |
108 ::switches::kForceDisplayList2dCanvas, | 109 ::switches::kForceDisplayList2dCanvas, |
109 ::switches::kEnableCanvas2dDynamicRenderingModeSwitching, | 110 ::switches::kEnableCanvas2dDynamicRenderingModeSwitching, |
110 ::switches::kDisableGpuSandbox, | 111 ::switches::kDisableGpuSandbox, |
111 ::switches::kEnableDistanceFieldText, | 112 ::switches::kEnableDistanceFieldText, |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
390 // Relaunch chrome without session manager on dev box. | 391 // Relaunch chrome without session manager on dev box. |
391 ReLaunch(command_line); | 392 ReLaunch(command_line); |
392 return; | 393 return; |
393 } | 394 } |
394 | 395 |
395 // ChromeRestartRequest deletes itself after request sent to session manager. | 396 // ChromeRestartRequest deletes itself after request sent to session manager. |
396 (new ChromeRestartRequest(command_line.argv()))->Start(); | 397 (new ChromeRestartRequest(command_line.argv()))->Start(); |
397 } | 398 } |
398 | 399 |
399 } // namespace chromeos | 400 } // namespace chromeos |
OLD | NEW |