OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 // checkbox in Add/Remove Programs->Set Program Access and Defaults. This | 230 // checkbox in Add/Remove Programs->Set Program Access and Defaults. This |
231 // only shows an error box because the only way to hide Chrome is by | 231 // only shows an error box because the only way to hide Chrome is by |
232 // uninstalling it. | 232 // uninstalling it. |
233 const char kHideIcons[] = "hide-icons"; | 233 const char kHideIcons[] = "hide-icons"; |
234 | 234 |
235 const char kShowIcons[] = "show-icons"; | 235 const char kShowIcons[] = "show-icons"; |
236 | 236 |
237 // Make Chrome default browser | 237 // Make Chrome default browser |
238 const char kMakeDefaultBrowser[] = "make-default-browser"; | 238 const char kMakeDefaultBrowser[] = "make-default-browser"; |
239 | 239 |
240 // Don't resolve hostnames to IPv6 addresses. | 240 // Don't resolve hostnames to IPv6 addresses. This can be used when debugging |
| 241 // issues relating to IPv6, but shouldn't otherwise be needed. Be sure to |
| 242 // file bugs if something isn't working properly in the presence of IPv6. |
241 const char kDisableIPv6[] = "disable-ipv6"; | 243 const char kDisableIPv6[] = "disable-ipv6"; |
242 | 244 |
243 // Use a specified proxy server, overrides system settings. This switch only | 245 // Use a specified proxy server, overrides system settings. This switch only |
244 // affects HTTP and HTTPS requests. | 246 // affects HTTP and HTTPS requests. |
245 const char kProxyServer[] = "proxy-server"; | 247 const char kProxyServer[] = "proxy-server"; |
246 | 248 |
247 // Don't use a proxy server, always make direct connections. Overrides any | 249 // Don't use a proxy server, always make direct connections. Overrides any |
248 // other proxy server flags that are passed. | 250 // other proxy server flags that are passed. |
249 const char kNoProxyServer[] = "no-proxy-server"; | 251 const char kNoProxyServer[] = "no-proxy-server"; |
250 | 252 |
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
643 // Enable experimental WebGL support. | 645 // Enable experimental WebGL support. |
644 const char kEnableExperimentalWebGL[] = "enable-webgl"; | 646 const char kEnableExperimentalWebGL[] = "enable-webgl"; |
645 | 647 |
646 // Enabled desktop notifications. | 648 // Enabled desktop notifications. |
647 const char kEnableDesktopNotifications[] = "enable-desktop-notifications"; | 649 const char kEnableDesktopNotifications[] = "enable-desktop-notifications"; |
648 | 650 |
649 // Enable Web Sockets support. | 651 // Enable Web Sockets support. |
650 const char kEnableWebSockets[] = "enable-web-sockets"; | 652 const char kEnableWebSockets[] = "enable-web-sockets"; |
651 | 653 |
652 } // namespace switches | 654 } // namespace switches |
OLD | NEW |