Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(485)

Unified Diff: net/spdy/spdy_network_transaction.cc

Issue 661194: Make a proper TCPSocketParams (Closed)
Patch Set: Address comments Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/socket/tcp_client_socket_pool_unittest.cc ('k') | net/spdy/spdy_session.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_network_transaction.cc
diff --git a/net/spdy/spdy_network_transaction.cc b/net/spdy/spdy_network_transaction.cc
index 9ae31c2b8fe47fa7f3c968378f0dc24fb9d65cdf..3d04c1daacee66f06bae3d88a0fc4f1e02271c94 100644
--- a/net/spdy/spdy_network_transaction.cc
+++ b/net/spdy/spdy_network_transaction.cc
@@ -17,6 +17,7 @@
#include "net/http/http_network_session.h"
#include "net/http/http_request_info.h"
#include "net/http/http_response_info.h"
+#include "net/socket/tcp_client_socket_pool.h"
#include "net/spdy/spdy_stream.h"
using base::Time;
@@ -231,14 +232,15 @@ int SpdyNetworkTransaction::DoInitConnection() {
std::string connection_group = "spdy.";
connection_group.append(host);
- HostResolver::RequestInfo resolve_info(host, port);
+ TCPSocketParams tcp_params(host, port, request_->priority, request_->referrer,
+ false);
HostPortPair host_port_pair(host, port);
spdy_ = session_->spdy_session_pool()->Get(host_port_pair, session_);
DCHECK(spdy_);
return spdy_->Connect(
- connection_group, resolve_info, request_->priority, load_log_);
+ connection_group, tcp_params, request_->priority, load_log_);
}
int SpdyNetworkTransaction::DoInitConnectionComplete(int result) {
« no previous file with comments | « net/socket/tcp_client_socket_pool_unittest.cc ('k') | net/spdy/spdy_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698