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