| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
| 6 | 6 |
| 7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 | 9 |
| 10 namespace switches { | 10 namespace switches { |
| (...skipping 995 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1006 const char kUtilityCmdPrefix[] = "utility-cmd-prefix"; | 1006 const char kUtilityCmdPrefix[] = "utility-cmd-prefix"; |
| 1007 | 1007 |
| 1008 // Print version information and quit. | 1008 // Print version information and quit. |
| 1009 const char kVersion[] = "version"; | 1009 const char kVersion[] = "version"; |
| 1010 | 1010 |
| 1011 // Use WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is | 1011 // Use WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is |
| 1012 // to use Chromium's network stack to fetch, and V8 to evaluate. | 1012 // to use Chromium's network stack to fetch, and V8 to evaluate. |
| 1013 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; | 1013 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; |
| 1014 | 1014 |
| 1015 #if defined(OS_CHROMEOS) | 1015 #if defined(OS_CHROMEOS) |
| 1016 // Enable DOM based login screens. | 1016 // Enable WebUI based login screens. |
| 1017 const char kDOMLogin[] = "dom-login"; | 1017 const char kWebUILogin[] = "webui-login"; |
| 1018 | 1018 |
| 1019 // Enables device policy support on ChromeOS. | 1019 // Enables device policy support on ChromeOS. |
| 1020 const char kEnableDevicePolicy[] = "enable-device-policy"; | 1020 const char kEnableDevicePolicy[] = "enable-device-policy"; |
| 1021 | 1021 |
| 1022 // Enables VPN support on ChromeOS. | 1022 // Enables VPN support on ChromeOS. |
| 1023 const char kEnableVPN[] = "enable-vpn"; | 1023 const char kEnableVPN[] = "enable-vpn"; |
| 1024 | 1024 |
| 1025 // Enable the redirection of viewable document requests to the Google | 1025 // Enable the redirection of viewable document requests to the Google |
| 1026 // Document Viewer. | 1026 // Document Viewer. |
| 1027 const char kEnableGView[] = "enable-gview"; | 1027 const char kEnableGView[] = "enable-gview"; |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1192 | 1192 |
| 1193 // ----------------------------------------------------------------------------- | 1193 // ----------------------------------------------------------------------------- |
| 1194 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1194 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1195 // | 1195 // |
| 1196 // You were going to just dump your switches here, weren't you? Instead, | 1196 // You were going to just dump your switches here, weren't you? Instead, |
| 1197 // please put them in alphabetical order above, or in order inside the | 1197 // please put them in alphabetical order above, or in order inside the |
| 1198 // appropriate ifdef at the bottom. The order should match the header. | 1198 // appropriate ifdef at the bottom. The order should match the header. |
| 1199 // ----------------------------------------------------------------------------- | 1199 // ----------------------------------------------------------------------------- |
| 1200 | 1200 |
| 1201 } // namespace switches | 1201 } // namespace switches |
| OLD | NEW |