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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 ::switches::kDisableSeccompFilterSandbox, | 87 ::switches::kDisableSeccompFilterSandbox, |
88 ::switches::kDisableSetuidSandbox, | 88 ::switches::kDisableSetuidSandbox, |
89 ::switches::kDisableThreadedCompositing, | 89 ::switches::kDisableThreadedCompositing, |
90 ::switches::kDisableTouchDragDrop, | 90 ::switches::kDisableTouchDragDrop, |
91 ::switches::kDisableTouchEditing, | 91 ::switches::kDisableTouchEditing, |
92 ::switches::kDisableWebKitMediaSource, | 92 ::switches::kDisableWebKitMediaSource, |
93 ::switches::kDisableAcceleratedFixedRootBackground, | 93 ::switches::kDisableAcceleratedFixedRootBackground, |
94 ::switches::kEnableAcceleratedFixedRootBackground, | 94 ::switches::kEnableAcceleratedFixedRootBackground, |
95 ::switches::kEnableAcceleratedOverflowScroll, | 95 ::switches::kEnableAcceleratedOverflowScroll, |
96 ::switches::kEnableBeginFrameScheduling, | 96 ::switches::kEnableBeginFrameScheduling, |
97 ::switches::kEnableBufferedInputRouter, | |
98 ::switches::kEnableCompositingForFixedPosition, | 97 ::switches::kEnableCompositingForFixedPosition, |
99 ::switches::kEnableDeadlineScheduling, | 98 ::switches::kEnableDeadlineScheduling, |
100 ::switches::kEnableDelegatedRenderer, | 99 ::switches::kEnableDelegatedRenderer, |
101 ::switches::kEnableEncryptedMedia, | 100 ::switches::kEnableEncryptedMedia, |
102 ::switches::kEnableGestureTapHighlight, | 101 ::switches::kEnableGestureTapHighlight, |
103 ::switches::kDisableGestureTapHighlight, | 102 ::switches::kDisableGestureTapHighlight, |
104 ::switches::kDisableGpuSandbox, | 103 ::switches::kDisableGpuSandbox, |
105 ::switches::kEnableLogging, | 104 ::switches::kEnableLogging, |
106 ::switches::kEnablePinch, | 105 ::switches::kEnablePinch, |
107 ::switches::kEnableThreadedCompositing, | 106 ::switches::kEnableThreadedCompositing, |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
362 // Relaunch chrome without session manager on dev box. | 361 // Relaunch chrome without session manager on dev box. |
363 ReLaunch(command_line); | 362 ReLaunch(command_line); |
364 return; | 363 return; |
365 } | 364 } |
366 | 365 |
367 // ChromeRestartRequest deletes itself after request sent to session manager. | 366 // ChromeRestartRequest deletes itself after request sent to session manager. |
368 (new ChromeRestartRequest(command_line))->Start(); | 367 (new ChromeRestartRequest(command_line))->Start(); |
369 } | 368 } |
370 | 369 |
371 } // namespace chromeos | 370 } // namespace chromeos |
OLD | NEW |