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 "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 ::switches::kGpuSandboxFailuresFatal, | 125 ::switches::kGpuSandboxFailuresFatal, |
126 ::switches::kGpuSandboxStartEarly, | 126 ::switches::kGpuSandboxStartEarly, |
127 ::switches::kIgnoreResolutionLimitsForAcceleratedVideoDecode, | 127 ::switches::kIgnoreResolutionLimitsForAcceleratedVideoDecode, |
128 ::switches::kNoSandbox, | 128 ::switches::kNoSandbox, |
129 ::switches::kNumRasterThreads, | 129 ::switches::kNumRasterThreads, |
130 ::switches::kPpapiFlashArgs, | 130 ::switches::kPpapiFlashArgs, |
131 ::switches::kPpapiFlashPath, | 131 ::switches::kPpapiFlashPath, |
132 ::switches::kPpapiFlashVersion, | 132 ::switches::kPpapiFlashVersion, |
133 ::switches::kPpapiInProcess, | 133 ::switches::kPpapiInProcess, |
134 ::switches::kRendererStartupDialog, | 134 ::switches::kRendererStartupDialog, |
| 135 ::switches::kRootLayerScrolls, |
135 ::switches::kEnableShareGroupAsyncTextureUpload, | 136 ::switches::kEnableShareGroupAsyncTextureUpload, |
136 ::switches::kTabCaptureUpscaleQuality, | 137 ::switches::kTabCaptureUpscaleQuality, |
137 ::switches::kTabCaptureDownscaleQuality, | 138 ::switches::kTabCaptureDownscaleQuality, |
138 #if defined(USE_XI2_MT) || defined(USE_OZONE) | 139 #if defined(USE_XI2_MT) || defined(USE_OZONE) |
139 ::switches::kTouchCalibration, | 140 ::switches::kTouchCalibration, |
140 #endif | 141 #endif |
141 ::switches::kTouchDevices, | 142 ::switches::kTouchDevices, |
142 ::switches::kTouchEvents, | 143 ::switches::kTouchEvents, |
143 ::switches::kUIDisableThreadedCompositing, | 144 ::switches::kUIDisableThreadedCompositing, |
144 ::switches::kUIPrioritizeInGpuProcess, | 145 ::switches::kUIPrioritizeInGpuProcess, |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
376 // Relaunch chrome without session manager on dev box. | 377 // Relaunch chrome without session manager on dev box. |
377 ReLaunch(command_line); | 378 ReLaunch(command_line); |
378 return; | 379 return; |
379 } | 380 } |
380 | 381 |
381 // ChromeRestartRequest deletes itself after request sent to session manager. | 382 // ChromeRestartRequest deletes itself after request sent to session manager. |
382 (new ChromeRestartRequest(command_line))->Start(); | 383 (new ChromeRestartRequest(command_line))->Start(); |
383 } | 384 } |
384 | 385 |
385 } // namespace chromeos | 386 } // namespace chromeos |
OLD | NEW |