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/chromeos/chromeos_version.h" | 10 #include "base/chromeos/chromeos_version.h" |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 ::switches::kUIDisableThreadedCompositing, | 121 ::switches::kUIDisableThreadedCompositing, |
122 ::switches::kUIMaxFramesPending, | 122 ::switches::kUIMaxFramesPending, |
123 ::switches::kUIPrioritizeInGpuProcess, | 123 ::switches::kUIPrioritizeInGpuProcess, |
124 #if defined(USE_CRAS) | 124 #if defined(USE_CRAS) |
125 ::switches::kUseCras, | 125 ::switches::kUseCras, |
126 #endif | 126 #endif |
127 ::switches::kUseGL, | 127 ::switches::kUseGL, |
128 ::switches::kUserDataDir, | 128 ::switches::kUserDataDir, |
129 ::switches::kUseExynosVda, | 129 ::switches::kUseExynosVda, |
130 ::switches::kV, | 130 ::switches::kV, |
| 131 ::switches::kEnableWebGLDraftExtensions, |
131 ash::switches::kAshTouchHud, | 132 ash::switches::kAshTouchHud, |
132 ash::switches::kAuraLegacyPowerButton, | 133 ash::switches::kAuraLegacyPowerButton, |
133 ash::switches::kAshDisableNewAudioHandler, | 134 ash::switches::kAshDisableNewAudioHandler, |
134 ash::switches::kAshEnableAudioDeviceMenu, | 135 ash::switches::kAshEnableAudioDeviceMenu, |
135 // Please keep these in alphabetical order. Non-UI Compositor switches | 136 // Please keep these in alphabetical order. Non-UI Compositor switches |
136 // here should also be added to | 137 // here should also be added to |
137 // content/browser/renderer_host/render_process_host_impl.cc. | 138 // content/browser/renderer_host/render_process_host_impl.cc. |
138 cc::switches::kBackgroundColorInsteadOfCheckerboard, | 139 cc::switches::kBackgroundColorInsteadOfCheckerboard, |
139 cc::switches::kCompositeToMailbox, | 140 cc::switches::kCompositeToMailbox, |
140 cc::switches::kDisableColorEstimator, | 141 cc::switches::kDisableColorEstimator, |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
341 // Relaunch chrome without session manager on dev box. | 342 // Relaunch chrome without session manager on dev box. |
342 ReLaunch(command_line); | 343 ReLaunch(command_line); |
343 return; | 344 return; |
344 } | 345 } |
345 | 346 |
346 // ChromeRestartRequest deletes itself after request sent to session manager. | 347 // ChromeRestartRequest deletes itself after request sent to session manager. |
347 (new ChromeRestartRequest(command_line))->Start(); | 348 (new ChromeRestartRequest(command_line))->Start(); |
348 } | 349 } |
349 | 350 |
350 } // namespace chromeos | 351 } // namespace chromeos |
OLD | NEW |