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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
364 // Relaunch chrome without session manager on dev box. | 366 // Relaunch chrome without session manager on dev box. |
365 ReLaunch(command_line); | 367 ReLaunch(command_line); |
366 return; | 368 return; |
367 } | 369 } |
368 | 370 |
369 // ChromeRestartRequest deletes itself after request sent to session manager. | 371 // ChromeRestartRequest deletes itself after request sent to session manager. |
370 (new ChromeRestartRequest(command_line))->Start(); | 372 (new ChromeRestartRequest(command_line))->Start(); |
371 } | 373 } |
372 | 374 |
373 } // namespace chromeos | 375 } // namespace chromeos |
OLD | NEW |