| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 ::switches::kDisableTouchEditing, | 86 ::switches::kDisableTouchEditing, |
| 87 ::switches::kEnableAcceleratedOverflowScroll, | 87 ::switches::kEnableAcceleratedOverflowScroll, |
| 88 ::switches::kEnableCompositingForFixedPosition, | 88 ::switches::kEnableCompositingForFixedPosition, |
| 89 ::switches::kEnableGestureTapHighlight, | 89 ::switches::kEnableGestureTapHighlight, |
| 90 ::switches::kDisableGestureTapHighlight, | 90 ::switches::kDisableGestureTapHighlight, |
| 91 ::switches::kDisableGpuSandbox, | 91 ::switches::kDisableGpuSandbox, |
| 92 ::switches::kEnableGpuSandbox, | 92 ::switches::kEnableGpuSandbox, |
| 93 ::switches::kEnableLogging, | 93 ::switches::kEnableLogging, |
| 94 ::switches::kEnablePinch, | 94 ::switches::kEnablePinch, |
| 95 ::switches::kEnableThreadedCompositing, | 95 ::switches::kEnableThreadedCompositing, |
| 96 ::switches::kEnableTouchCancelAfterScroll, |
| 96 ::switches::kEnableTouchDragDrop, | 97 ::switches::kEnableTouchDragDrop, |
| 97 ::switches::kEnableTouchEditing, | 98 ::switches::kEnableTouchEditing, |
| 98 ::switches::kEnableViewport, | 99 ::switches::kEnableViewport, |
| 99 ::switches::kEnableVsyncNotification, | 100 ::switches::kEnableVsyncNotification, |
| 100 ::switches::kForceDeviceScaleFactor, | 101 ::switches::kForceDeviceScaleFactor, |
| 101 ::switches::kGpuStartupDialog, | 102 ::switches::kGpuStartupDialog, |
| 102 ::switches::kMultiProfiles, | 103 ::switches::kMultiProfiles, |
| 103 ::switches::kNoSandbox, | 104 ::switches::kNoSandbox, |
| 104 ::switches::kPpapiFlashArgs, | 105 ::switches::kPpapiFlashArgs, |
| 105 ::switches::kPpapiFlashInProcess, | 106 ::switches::kPpapiFlashInProcess, |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 // Relaunch chrome without session manager on dev box. | 337 // Relaunch chrome without session manager on dev box. |
| 337 ReLaunch(command_line); | 338 ReLaunch(command_line); |
| 338 return; | 339 return; |
| 339 } | 340 } |
| 340 | 341 |
| 341 // ChromeRestartRequest deletes itself after request sent to session manager. | 342 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 342 (new ChromeRestartRequest(command_line))->Start(); | 343 (new ChromeRestartRequest(command_line))->Start(); |
| 343 } | 344 } |
| 344 | 345 |
| 345 } // namespace chromeos | 346 } // namespace chromeos |
| OLD | NEW |