| Index: chrome/browser/browser_process_impl.cc
|
| diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc
|
| index b1e0199a8f2ad5a14e4d693c31215d1079859700..ff21864ed05b7978f916186bf31beff097241c3a 100644
|
| --- a/chrome/browser/browser_process_impl.cc
|
| +++ b/chrome/browser/browser_process_impl.cc
|
| @@ -715,8 +715,10 @@ void BrowserProcessImpl::CreateLocalState() {
|
| net::kDefaultMaxSocketsPerProxyServer);
|
| int max_per_proxy = local_state_->GetInteger(prefs::kMaxConnectionsPerProxy);
|
| net::ClientSocketPoolManager::set_max_sockets_per_proxy_server(
|
| + net::HttpNetworkSession::NORMAL_SOCKET_POOL,
|
| std::max(std::min(max_per_proxy, 99),
|
| - net::ClientSocketPoolManager::max_sockets_per_group()));
|
| + net::ClientSocketPoolManager::max_sockets_per_group(
|
| + net::HttpNetworkSession::NORMAL_SOCKET_POOL)));
|
|
|
| // This is observed by ChildProcessSecurityPolicy, which lives in content/
|
| // though, so it can't register itself.
|
|
|