| Index: net/proxy/proxy_list.cc
|
| ===================================================================
|
| --- net/proxy/proxy_list.cc (revision 20189)
|
| +++ net/proxy/proxy_list.cc (working copy)
|
| @@ -18,7 +18,7 @@
|
| StringTokenizer str_tok(proxy_uri_list, ";");
|
| while (str_tok.GetNext()) {
|
| ProxyServer uri = ProxyServer::FromURI(
|
| - str_tok.token_begin(), str_tok.token_end());
|
| + str_tok.token_begin(), str_tok.token_end(), ProxyServer::SCHEME_HTTP);
|
| // Silently discard malformed inputs.
|
| if (uri.is_valid())
|
| proxies_.push_back(uri);
|
|
|