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 989 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1000 const char kUtilityCmdPrefix[] = "utility-cmd-prefix"; | 1000 const char kUtilityCmdPrefix[] = "utility-cmd-prefix"; |
1001 | 1001 |
1002 // Print version information and quit. | 1002 // Print version information and quit. |
1003 const char kVersion[] = "version"; | 1003 const char kVersion[] = "version"; |
1004 | 1004 |
1005 // Use WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is | 1005 // Use WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is |
1006 // to use Chromium's network stack to fetch, and V8 to evaluate. | 1006 // to use Chromium's network stack to fetch, and V8 to evaluate. |
1007 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; | 1007 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; |
1008 | 1008 |
1009 #if defined(OS_CHROMEOS) | 1009 #if defined(OS_CHROMEOS) |
1010 // Enable DOM based login screens. | 1010 // Enable WebUI based login screens. |
1011 const char kDOMLogin[] = "dom-login"; | 1011 const char kWebUILogin[] = "webui-login"; |
1012 | 1012 |
1013 // Enables device policy support on ChromeOS. | 1013 // Enables device policy support on ChromeOS. |
1014 const char kEnableDevicePolicy[] = "enable-device-policy"; | 1014 const char kEnableDevicePolicy[] = "enable-device-policy"; |
1015 | 1015 |
1016 // Enable the redirection of viewable document requests to the Google | 1016 // Enable the redirection of viewable document requests to the Google |
1017 // Document Viewer. | 1017 // Document Viewer. |
1018 const char kEnableGView[] = "enable-gview"; | 1018 const char kEnableGView[] = "enable-gview"; |
1019 | 1019 |
1020 // Should we show the image based login? | 1020 // Should we show the image based login? |
1021 const char kEnableLoginImages[] = "enable-login-images"; | 1021 const char kEnableLoginImages[] = "enable-login-images"; |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1178 | 1178 |
1179 // ----------------------------------------------------------------------------- | 1179 // ----------------------------------------------------------------------------- |
1180 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1180 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1181 // | 1181 // |
1182 // You were going to just dump your switches here, weren't you? Instead, | 1182 // You were going to just dump your switches here, weren't you? Instead, |
1183 // please put them in alphabetical order above, or in order inside the | 1183 // please put them in alphabetical order above, or in order inside the |
1184 // appropriate ifdef at the bottom. The order should match the header. | 1184 // appropriate ifdef at the bottom. The order should match the header. |
1185 // ----------------------------------------------------------------------------- | 1185 // ----------------------------------------------------------------------------- |
1186 | 1186 |
1187 } // namespace switches | 1187 } // namespace switches |
OLD | NEW |