| 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/chromeos/chromeos_version.h" | 10 #include "base/chromeos/chromeos_version.h" |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 ::switches::kDisableSeccompFilterSandbox, | 83 ::switches::kDisableSeccompFilterSandbox, |
| 84 ::switches::kDisableSetuidSandbox, | 84 ::switches::kDisableSetuidSandbox, |
| 85 ::switches::kDisableThreadedCompositing, | 85 ::switches::kDisableThreadedCompositing, |
| 86 ::switches::kDisableTouchDragDrop, | 86 ::switches::kDisableTouchDragDrop, |
| 87 ::switches::kDisableTouchEditing, | 87 ::switches::kDisableTouchEditing, |
| 88 ::switches::kDisableWebKitMediaSource, | 88 ::switches::kDisableWebKitMediaSource, |
| 89 ::switches::kEnableAcceleratedOverflowScroll, | 89 ::switches::kEnableAcceleratedOverflowScroll, |
| 90 ::switches::kEnableBeginFrameScheduling, | 90 ::switches::kEnableBeginFrameScheduling, |
| 91 ::switches::kEnableBrowserInputController, | 91 ::switches::kEnableBrowserInputController, |
| 92 ::switches::kEnableCompositingForFixedPosition, | 92 ::switches::kEnableCompositingForFixedPosition, |
| 93 ::switches::kEnableEncodedScreenCapture, |
| 93 ::switches::kEnableEncryptedMedia, | 94 ::switches::kEnableEncryptedMedia, |
| 94 ::switches::kEnableGestureTapHighlight, | 95 ::switches::kEnableGestureTapHighlight, |
| 95 ::switches::kDisableGestureTapHighlight, | 96 ::switches::kDisableGestureTapHighlight, |
| 96 ::switches::kDisableGpuSandbox, | 97 ::switches::kDisableGpuSandbox, |
| 97 ::switches::kEnableLogging, | 98 ::switches::kEnableLogging, |
| 98 ::switches::kEnablePinch, | 99 ::switches::kEnablePinch, |
| 99 ::switches::kEnableThreadedCompositing, | 100 ::switches::kEnableThreadedCompositing, |
| 100 ::switches::kEnableTouchDragDrop, | 101 ::switches::kEnableTouchDragDrop, |
| 101 ::switches::kEnableTouchEditing, | 102 ::switches::kEnableTouchEditing, |
| 102 ::switches::kEnableViewport, | 103 ::switches::kEnableViewport, |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 // Relaunch chrome without session manager on dev box. | 343 // Relaunch chrome without session manager on dev box. |
| 343 ReLaunch(command_line); | 344 ReLaunch(command_line); |
| 344 return; | 345 return; |
| 345 } | 346 } |
| 346 | 347 |
| 347 // ChromeRestartRequest deletes itself after request sent to session manager. | 348 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 348 (new ChromeRestartRequest(command_line))->Start(); | 349 (new ChromeRestartRequest(command_line))->Start(); |
| 349 } | 350 } |
| 350 | 351 |
| 351 } // namespace chromeos | 352 } // namespace chromeos |
| OLD | NEW |