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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 ::switches::kDisablePrefixedEncryptedMedia, | 86 ::switches::kDisablePrefixedEncryptedMedia, |
87 ::switches::kDisablePanelFitting, | 87 ::switches::kDisablePanelFitting, |
88 ::switches::kDisableRepaintAfterLayout, | 88 ::switches::kDisableRepaintAfterLayout, |
89 ::switches::kDisableSeccompFilterSandbox, | 89 ::switches::kDisableSeccompFilterSandbox, |
90 ::switches::kDisableSetuidSandbox, | 90 ::switches::kDisableSetuidSandbox, |
91 ::switches::kDisableThreadedCompositing, | 91 ::switches::kDisableThreadedCompositing, |
92 ::switches::kDisableTouchDragDrop, | 92 ::switches::kDisableTouchDragDrop, |
93 ::switches::kDisableTouchEditing, | 93 ::switches::kDisableTouchEditing, |
94 ::switches::kDisableUniversalAcceleratedOverflowScroll, | 94 ::switches::kDisableUniversalAcceleratedOverflowScroll, |
95 ::switches::kDisableAcceleratedFixedRootBackground, | 95 ::switches::kDisableAcceleratedFixedRootBackground, |
| 96 ::switches::kDisableZeroCopy, |
96 ::switches::kEnableAcceleratedFixedRootBackground, | 97 ::switches::kEnableAcceleratedFixedRootBackground, |
97 ::switches::kEnableAcceleratedOverflowScroll, | 98 ::switches::kEnableAcceleratedOverflowScroll, |
98 ::switches::kEnableBeginFrameScheduling, | 99 ::switches::kEnableBeginFrameScheduling, |
99 ::switches::kEnableCompositingForFixedPosition, | 100 ::switches::kEnableCompositingForFixedPosition, |
100 ::switches::kEnableDelegatedRenderer, | 101 ::switches::kEnableDelegatedRenderer, |
101 ::switches::kEnableEncryptedMedia, | 102 ::switches::kEnableEncryptedMedia, |
102 ::switches::kEnableFastTextAutosizing, | 103 ::switches::kEnableFastTextAutosizing, |
103 ::switches::kEnableGestureTapHighlight, | 104 ::switches::kEnableGestureTapHighlight, |
104 ::switches::kDisableGestureTapHighlight, | 105 ::switches::kDisableGestureTapHighlight, |
105 ::switches::kDisableGpuSandbox, | 106 ::switches::kDisableGpuSandbox, |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 // Relaunch chrome without session manager on dev box. | 372 // Relaunch chrome without session manager on dev box. |
372 ReLaunch(command_line); | 373 ReLaunch(command_line); |
373 return; | 374 return; |
374 } | 375 } |
375 | 376 |
376 // ChromeRestartRequest deletes itself after request sent to session manager. | 377 // ChromeRestartRequest deletes itself after request sent to session manager. |
377 (new ChromeRestartRequest(command_line))->Start(); | 378 (new ChromeRestartRequest(command_line))->Start(); |
378 } | 379 } |
379 | 380 |
380 } // namespace chromeos | 381 } // namespace chromeos |
OLD | NEW |