| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 ::switches::kExtraTouchNoiseFiltering, | 123 ::switches::kExtraTouchNoiseFiltering, |
| 124 #endif | 124 #endif |
| 125 ::switches::kMainFrameResizesAreOrientationChanges, | 125 ::switches::kMainFrameResizesAreOrientationChanges, |
| 126 ::switches::kForceDeviceScaleFactor, | 126 ::switches::kForceDeviceScaleFactor, |
| 127 ::switches::kForceGpuRasterization, | 127 ::switches::kForceGpuRasterization, |
| 128 ::switches::kGpuRasterizationMSAASampleCount, | 128 ::switches::kGpuRasterizationMSAASampleCount, |
| 129 ::switches::kGpuStartupDialog, | 129 ::switches::kGpuStartupDialog, |
| 130 ::switches::kGpuSandboxAllowSysVShm, | 130 ::switches::kGpuSandboxAllowSysVShm, |
| 131 ::switches::kGpuSandboxFailuresFatal, | 131 ::switches::kGpuSandboxFailuresFatal, |
| 132 ::switches::kGpuSandboxStartEarly, | 132 ::switches::kGpuSandboxStartEarly, |
| 133 ::switches::kMicrophonePositions, |
| 133 ::switches::kNoSandbox, | 134 ::switches::kNoSandbox, |
| 134 ::switches::kNumRasterThreads, | 135 ::switches::kNumRasterThreads, |
| 135 ::switches::kPpapiFlashArgs, | 136 ::switches::kPpapiFlashArgs, |
| 136 ::switches::kPpapiFlashPath, | 137 ::switches::kPpapiFlashPath, |
| 137 ::switches::kPpapiFlashVersion, | 138 ::switches::kPpapiFlashVersion, |
| 138 ::switches::kPpapiInProcess, | 139 ::switches::kPpapiInProcess, |
| 139 ::switches::kRendererStartupDialog, | 140 ::switches::kRendererStartupDialog, |
| 140 ::switches::kRootLayerScrolls, | 141 ::switches::kRootLayerScrolls, |
| 141 ::switches::kEnableShareGroupAsyncTextureUpload, | 142 ::switches::kEnableShareGroupAsyncTextureUpload, |
| 142 ::switches::kTabCaptureUpscaleQuality, | 143 ::switches::kTabCaptureUpscaleQuality, |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 // Relaunch chrome without session manager on dev box. | 382 // Relaunch chrome without session manager on dev box. |
| 382 ReLaunch(command_line); | 383 ReLaunch(command_line); |
| 383 return; | 384 return; |
| 384 } | 385 } |
| 385 | 386 |
| 386 // ChromeRestartRequest deletes itself after request sent to session manager. | 387 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 387 (new ChromeRestartRequest(command_line))->Start(); | 388 (new ChromeRestartRequest(command_line))->Start(); |
| 388 } | 389 } |
| 389 | 390 |
| 390 } // namespace chromeos | 391 } // namespace chromeos |
| OLD | NEW |