Chromium Code Reviews| Index: net/http/http_network_transaction.cc |
| =================================================================== |
| --- net/http/http_network_transaction.cc (revision 34785) |
| +++ net/http/http_network_transaction.cc (working copy) |
| @@ -652,7 +652,7 @@ |
| req_info.set_referrer(request_->referrer); |
| if (proxy_info_.proxy_server().scheme() == ProxyServer::SCHEME_SOCKS5) |
| - s = new SOCKS5ClientSocket(s, req_info, session_->host_resolver()); |
| + s = new SOCKS5ClientSocket(s, req_info, NULL /*use proxy-side resolving*/); |
|
wtc
2009/12/17 23:23:04
Nit: unless you're trying to fit in 80 chars, it l
|
| else |
| s = new SOCKSClientSocket(s, req_info, session_->host_resolver()); |
| connection_.set_socket(s); |