| 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. |
| 241 const char kDisableIPv6[] = "disable-ipv6"; |
| 242 |
| 240 // Use a specified proxy server, overrides system settings. This switch only | 243 // Use a specified proxy server, overrides system settings. This switch only |
| 241 // affects HTTP and HTTPS requests. | 244 // affects HTTP and HTTPS requests. |
| 242 const char kProxyServer[] = "proxy-server"; | 245 const char kProxyServer[] = "proxy-server"; |
| 243 | 246 |
| 244 // Don't use a proxy server, always make direct connections. Overrides any | 247 // Don't use a proxy server, always make direct connections. Overrides any |
| 245 // other proxy server flags that are passed. | 248 // other proxy server flags that are passed. |
| 246 const char kNoProxyServer[] = "no-proxy-server"; | 249 const char kNoProxyServer[] = "no-proxy-server"; |
| 247 | 250 |
| 248 // Specify a list of hosts for whom we bypass proxy settings and use direct | 251 // Specify a list of hosts for whom we bypass proxy settings and use direct |
| 249 // connections. Ignored if --proxy-auto-detect or --no-proxy-server are | 252 // connections. Ignored if --proxy-auto-detect or --no-proxy-server are |
| (...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 640 // Enable experimental WebGL support. | 643 // Enable experimental WebGL support. |
| 641 const char kEnableExperimentalWebGL[] = "enable-webgl"; | 644 const char kEnableExperimentalWebGL[] = "enable-webgl"; |
| 642 | 645 |
| 643 // Enabled desktop notifications. | 646 // Enabled desktop notifications. |
| 644 const char kEnableDesktopNotifications[] = "enable-desktop-notifications"; | 647 const char kEnableDesktopNotifications[] = "enable-desktop-notifications"; |
| 645 | 648 |
| 646 // Enable Web Sockets support. | 649 // Enable Web Sockets support. |
| 647 const char kEnableWebSockets[] = "enable-web-sockets"; | 650 const char kEnableWebSockets[] = "enable-web-sockets"; |
| 648 | 651 |
| 649 } // namespace switches | 652 } // namespace switches |
| OLD | NEW |