| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 ::switches::kDisableForceCompositingMode, | 78 ::switches::kDisableForceCompositingMode, |
| 79 ::switches::kDisableGpuShaderDiskCache, | 79 ::switches::kDisableGpuShaderDiskCache, |
| 80 ::switches::kDisableGpuWatchdog, | 80 ::switches::kDisableGpuWatchdog, |
| 81 ::switches::kDisableLegacyEncryptedMedia, | 81 ::switches::kDisableLegacyEncryptedMedia, |
| 82 ::switches::kDisablePanelFitting, | 82 ::switches::kDisablePanelFitting, |
| 83 ::switches::kDisableSeccompFilterSandbox, | 83 ::switches::kDisableSeccompFilterSandbox, |
| 84 ::switches::kDisableThreadedCompositing, | 84 ::switches::kDisableThreadedCompositing, |
| 85 ::switches::kDisableTouchDragDrop, | 85 ::switches::kDisableTouchDragDrop, |
| 86 ::switches::kDisableTouchEditing, | 86 ::switches::kDisableTouchEditing, |
| 87 ::switches::kDisableWebKitMediaSource, | 87 ::switches::kDisableWebKitMediaSource, |
| 88 ::switches::kDisableAcceleratedFixedRootBackground, |
| 89 ::switches::kEnableAcceleratedFixedRootBackground, |
| 88 ::switches::kEnableAcceleratedOverflowScroll, | 90 ::switches::kEnableAcceleratedOverflowScroll, |
| 89 ::switches::kEnableBeginFrameScheduling, | 91 ::switches::kEnableBeginFrameScheduling, |
| 90 ::switches::kEnableBrowserInputController, | 92 ::switches::kEnableBrowserInputController, |
| 91 ::switches::kEnableCompositingForFixedPosition, | 93 ::switches::kEnableCompositingForFixedPosition, |
| 92 ::switches::kEnableEncryptedMedia, | 94 ::switches::kEnableEncryptedMedia, |
| 93 ::switches::kEnableGestureTapHighlight, | 95 ::switches::kEnableGestureTapHighlight, |
| 94 ::switches::kDisableGestureTapHighlight, | 96 ::switches::kDisableGestureTapHighlight, |
| 95 ::switches::kDisableGpuSandbox, | 97 ::switches::kDisableGpuSandbox, |
| 96 ::switches::kEnableLogging, | 98 ::switches::kEnableLogging, |
| 97 ::switches::kEnablePinch, | 99 ::switches::kEnablePinch, |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 // Relaunch chrome without session manager on dev box. | 344 // Relaunch chrome without session manager on dev box. |
| 343 ReLaunch(command_line); | 345 ReLaunch(command_line); |
| 344 return; | 346 return; |
| 345 } | 347 } |
| 346 | 348 |
| 347 // ChromeRestartRequest deletes itself after request sent to session manager. | 349 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 348 (new ChromeRestartRequest(command_line))->Start(); | 350 (new ChromeRestartRequest(command_line))->Start(); |
| 349 } | 351 } |
| 350 | 352 |
| 351 } // namespace chromeos | 353 } // namespace chromeos |
| OLD | NEW |