Chromium Code Reviews| Index: chrome/browser/net/chrome_url_request_context_unittest.cc |
| =================================================================== |
| --- chrome/browser/net/chrome_url_request_context_unittest.cc (revision 16082) |
| +++ chrome/browser/net/chrome_url_request_context_unittest.cc (working copy) |
| @@ -32,16 +32,16 @@ |
| per_scheme_proxy_bypass.AppendSwitchWithValue(switches::kProxyServer, |
| L"http=httpproxy:8888;ftp=ftpproxy:8889"); |
| per_scheme_proxy_bypass.AppendSwitchWithValue( |
| - switches::kProxyServerBypassUrls, |
| + switches::kProxyBypassUrls, |
| L".google.com, foo.com:99, 1.2.3.4:22, 127.0.0.1/8"); |
|
wtc
2009/05/15 17:45:32
Nit: Hmm... these are not really URLs. Perhaps we
eroman
2009/05/15 18:53:04
I agree --proxy-bypass-list would be a better swit
|
| CommandLine with_pac_url(L"foo.exe"); |
| - with_pac_url.AppendSwitchWithValue(switches::kProxyServerPacUrl, |
| + with_pac_url.AppendSwitchWithValue(switches::kProxyPacUrl, |
| L"http://wpad/wpad.dat"); |
| with_pac_url.AppendSwitchWithValue( |
| - switches::kProxyServerBypassUrls, |
| + switches::kProxyBypassUrls, |
| L".google.com, foo.com:99, 1.2.3.4:22, 127.0.0.1/8"); |
| CommandLine with_auto_detect(L"foo.exe"); |
| - with_auto_detect.AppendSwitch(switches::kProxyServerAutoDetect); |
| + with_auto_detect.AppendSwitch(switches::kProxyAutoDetect); |
| // Inspired from proxy_config_service_win_unittest.cc. |
| const struct { |