| 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 <sys/socket.h> | 7 #include <sys/socket.h> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "ash/common/ash_switches.h" | 10 #include "ash/common/ash_switches.h" |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 ::switches::kPpapiFlashPath, | 143 ::switches::kPpapiFlashPath, |
| 144 ::switches::kPpapiFlashVersion, | 144 ::switches::kPpapiFlashVersion, |
| 145 ::switches::kPpapiInProcess, | 145 ::switches::kPpapiInProcess, |
| 146 ::switches::kRemoteDebuggingPort, | 146 ::switches::kRemoteDebuggingPort, |
| 147 ::switches::kRendererStartupDialog, | 147 ::switches::kRendererStartupDialog, |
| 148 ::switches::kRootLayerScrolls, | 148 ::switches::kRootLayerScrolls, |
| 149 #if defined(USE_X11) || defined(USE_OZONE) | 149 #if defined(USE_X11) || defined(USE_OZONE) |
| 150 ::switches::kTouchCalibration, | 150 ::switches::kTouchCalibration, |
| 151 #endif | 151 #endif |
| 152 ::switches::kTouchDevices, | 152 ::switches::kTouchDevices, |
| 153 ::switches::kTouchEvents, | 153 ::switches::kDisableTouchEventAPI, |
| 154 ::switches::kTopChromeMD, | 154 ::switches::kTopChromeMD, |
| 155 ::switches::kTraceToConsole, | 155 ::switches::kTraceToConsole, |
| 156 ::switches::kUIDisablePartialSwap, | 156 ::switches::kUIDisablePartialSwap, |
| 157 ::switches::kUIPrioritizeInGpuProcess, | 157 ::switches::kUIPrioritizeInGpuProcess, |
| 158 #if defined(USE_CRAS) | 158 #if defined(USE_CRAS) |
| 159 ::switches::kUseCras, | 159 ::switches::kUseCras, |
| 160 #endif | 160 #endif |
| 161 ::switches::kUseGL, | 161 ::switches::kUseGL, |
| 162 ::switches::kUserDataDir, | 162 ::switches::kUserDataDir, |
| 163 ::switches::kV, | 163 ::switches::kV, |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 // Relaunch chrome without session manager on dev box. | 387 // Relaunch chrome without session manager on dev box. |
| 388 ReLaunch(command_line); | 388 ReLaunch(command_line); |
| 389 return; | 389 return; |
| 390 } | 390 } |
| 391 | 391 |
| 392 // ChromeRestartRequest deletes itself after request sent to session manager. | 392 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 393 (new ChromeRestartRequest(command_line.argv()))->Start(); | 393 (new ChromeRestartRequest(command_line.argv()))->Start(); |
| 394 } | 394 } |
| 395 | 395 |
| 396 } // namespace chromeos | 396 } // namespace chromeos |
| OLD | NEW |