| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 ::switches::kDisableGestureTapHighlight, | 101 ::switches::kDisableGestureTapHighlight, |
| 102 ::switches::kDisableGpuSandbox, | 102 ::switches::kDisableGpuSandbox, |
| 103 ::switches::kEnableLogging, | 103 ::switches::kEnableLogging, |
| 104 ::switches::kEnablePinch, | 104 ::switches::kEnablePinch, |
| 105 ::switches::kEnableRepaintAfterLayout, | 105 ::switches::kEnableRepaintAfterLayout, |
| 106 ::switches::kEnableThreadedCompositing, | 106 ::switches::kEnableThreadedCompositing, |
| 107 ::switches::kEnableTouchDragDrop, | 107 ::switches::kEnableTouchDragDrop, |
| 108 ::switches::kEnableTouchEditing, | 108 ::switches::kEnableTouchEditing, |
| 109 ::switches::kEnableUniversalAcceleratedOverflowScroll, | 109 ::switches::kEnableUniversalAcceleratedOverflowScroll, |
| 110 ::switches::kEnableViewport, | 110 ::switches::kEnableViewport, |
| 111 ::switches::kEnableViewportMeta, |
| 112 ::switches::kMainFrameResizesAreOrientationChanges, |
| 111 ::switches::kForceDeviceScaleFactor, | 113 ::switches::kForceDeviceScaleFactor, |
| 112 ::switches::kGpuStartupDialog, | 114 ::switches::kGpuStartupDialog, |
| 113 ::switches::kGpuSandboxAllowSysVShm, | 115 ::switches::kGpuSandboxAllowSysVShm, |
| 114 ::switches::kMultiProfiles, | 116 ::switches::kMultiProfiles, |
| 115 ::switches::kNoSandbox, | 117 ::switches::kNoSandbox, |
| 116 ::switches::kPpapiFlashArgs, | 118 ::switches::kPpapiFlashArgs, |
| 117 ::switches::kPpapiFlashInProcess, | 119 ::switches::kPpapiFlashInProcess, |
| 118 ::switches::kPpapiFlashPath, | 120 ::switches::kPpapiFlashPath, |
| 119 ::switches::kPpapiFlashVersion, | 121 ::switches::kPpapiFlashVersion, |
| 120 ::switches::kPpapiInProcess, | 122 ::switches::kPpapiInProcess, |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 // Relaunch chrome without session manager on dev box. | 365 // Relaunch chrome without session manager on dev box. |
| 364 ReLaunch(command_line); | 366 ReLaunch(command_line); |
| 365 return; | 367 return; |
| 366 } | 368 } |
| 367 | 369 |
| 368 // ChromeRestartRequest deletes itself after request sent to session manager. | 370 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 369 (new ChromeRestartRequest(command_line))->Start(); | 371 (new ChromeRestartRequest(command_line))->Start(); |
| 370 } | 372 } |
| 371 | 373 |
| 372 } // namespace chromeos | 374 } // namespace chromeos |
| OLD | NEW |