| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 ::switches::kUseGL, | 161 ::switches::kUseGL, |
| 162 ::switches::kUserDataDir, | 162 ::switches::kUserDataDir, |
| 163 ::switches::kV, | 163 ::switches::kV, |
| 164 ::switches::kVModule, | 164 ::switches::kVModule, |
| 165 ::switches::kEnableWebGLDraftExtensions, | 165 ::switches::kEnableWebGLDraftExtensions, |
| 166 ::switches::kDisableWebGLImageChromium, | 166 ::switches::kDisableWebGLImageChromium, |
| 167 ::switches::kEnableWebGLImageChromium, | 167 ::switches::kEnableWebGLImageChromium, |
| 168 ::switches::kEnableWebVR, | 168 ::switches::kEnableWebVR, |
| 169 #if BUILDFLAG(ENABLE_WEBRTC) | 169 #if BUILDFLAG(ENABLE_WEBRTC) |
| 170 ::switches::kDisableWebRtcHWDecoding, | 170 ::switches::kDisableWebRtcHWDecoding, |
| 171 ::switches::kDisableWebRtcHWEncoding, | 171 ::switches::kDisableWebRtcHWVP8Encoding, |
| 172 #endif | 172 #endif |
| 173 ::switches::kDisableVaapiAcceleratedVideoEncode, | 173 ::switches::kDisableVaapiAcceleratedVideoEncode, |
| 174 #if defined(USE_OZONE) | 174 #if defined(USE_OZONE) |
| 175 ::switches::kOzonePlatform, | 175 ::switches::kOzonePlatform, |
| 176 #endif | 176 #endif |
| 177 app_list::switches::kDisableSyncAppList, | 177 app_list::switches::kDisableSyncAppList, |
| 178 app_list::switches::kEnableSyncAppList, | 178 app_list::switches::kEnableSyncAppList, |
| 179 ash::switches::kAshEnableTabletPowerButton, | 179 ash::switches::kAshEnableTabletPowerButton, |
| 180 ash::switches::kAshEnableTouchView, | 180 ash::switches::kAshEnableTouchView, |
| 181 ash::switches::kAshEnablePalette, | 181 ash::switches::kAshEnablePalette, |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 // Relaunch chrome without session manager on dev box. | 389 // Relaunch chrome without session manager on dev box. |
| 390 ReLaunch(command_line); | 390 ReLaunch(command_line); |
| 391 return; | 391 return; |
| 392 } | 392 } |
| 393 | 393 |
| 394 // ChromeRestartRequest deletes itself after request sent to session manager. | 394 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 395 (new ChromeRestartRequest(command_line.argv()))->Start(); | 395 (new ChromeRestartRequest(command_line.argv()))->Start(); |
| 396 } | 396 } |
| 397 | 397 |
| 398 } // namespace chromeos | 398 } // namespace chromeos |
| OLD | NEW |