| 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 1002 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1013 // to use Chromium's network stack to fetch, and V8 to evaluate. | 1013 // to use Chromium's network stack to fetch, and V8 to evaluate. |
| 1014 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; | 1014 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; |
| 1015 | 1015 |
| 1016 #if defined(OS_CHROMEOS) | 1016 #if defined(OS_CHROMEOS) |
| 1017 // Enable DOM based login screens. | 1017 // Enable DOM based login screens. |
| 1018 const char kDOMLogin[] = "dom-login"; | 1018 const char kDOMLogin[] = "dom-login"; |
| 1019 | 1019 |
| 1020 // Enables device policy support on ChromeOS. | 1020 // Enables device policy support on ChromeOS. |
| 1021 const char kEnableDevicePolicy[] = "enable-device-policy"; | 1021 const char kEnableDevicePolicy[] = "enable-device-policy"; |
| 1022 | 1022 |
| 1023 // Enables VPN support on ChromeOS. | |
| 1024 const char kEnableVPN[] = "enable-vpn"; | |
| 1025 | |
| 1026 // Enable the redirection of viewable document requests to the Google | 1023 // Enable the redirection of viewable document requests to the Google |
| 1027 // Document Viewer. | 1024 // Document Viewer. |
| 1028 const char kEnableGView[] = "enable-gview"; | 1025 const char kEnableGView[] = "enable-gview"; |
| 1029 | 1026 |
| 1030 // Should we show the image based login? | 1027 // Should we show the image based login? |
| 1031 const char kEnableLoginImages[] = "enable-login-images"; | 1028 const char kEnableLoginImages[] = "enable-login-images"; |
| 1032 | 1029 |
| 1033 // Enable Chrome-as-a-login-manager behavior. | 1030 // Enable Chrome-as-a-login-manager behavior. |
| 1034 const char kLoginManager[] = "login-manager"; | 1031 const char kLoginManager[] = "login-manager"; |
| 1035 | 1032 |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1188 | 1185 |
| 1189 // ----------------------------------------------------------------------------- | 1186 // ----------------------------------------------------------------------------- |
| 1190 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1187 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1191 // | 1188 // |
| 1192 // You were going to just dump your switches here, weren't you? Instead, | 1189 // You were going to just dump your switches here, weren't you? Instead, |
| 1193 // please put them in alphabetical order above, or in order inside the | 1190 // please put them in alphabetical order above, or in order inside the |
| 1194 // appropriate ifdef at the bottom. The order should match the header. | 1191 // appropriate ifdef at the bottom. The order should match the header. |
| 1195 // ----------------------------------------------------------------------------- | 1192 // ----------------------------------------------------------------------------- |
| 1196 | 1193 |
| 1197 } // namespace switches | 1194 } // namespace switches |
| OLD | NEW |