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

Unified Diff: net/spdy/spdy_session.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/spdy/spdy_session.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_session.cc
diff --git a/net/spdy/spdy_session.cc b/net/spdy/spdy_session.cc
index 172b5d7492c8df8bd515d157c2811f299f771775..e0eb9c5b127702a503e21c137d422da550631b04 100644
--- a/net/spdy/spdy_session.cc
+++ b/net/spdy/spdy_session.cc
@@ -257,7 +257,7 @@ void SpdySession::InitializeWithSSLSocket(ClientSocketHandle* connection) {
}
net::Error SpdySession::Connect(const std::string& group_name,
- const HostResolver::RequestInfo& host,
+ const TCPSocketParams& destination,
RequestPriority priority,
LoadLog* load_log) {
DCHECK(priority >= SPDY_PRIORITY_HIGHEST && priority <= SPDY_PRIORITY_LOWEST);
@@ -271,8 +271,9 @@ net::Error SpdySession::Connect(const std::string& group_name,
static StatsCounter spdy_sessions("spdy.sessions");
spdy_sessions.Increment();
- int rv = connection_->Init(group_name, host, priority, &connect_callback_,
- session_->tcp_socket_pool(), load_log);
+ int rv = connection_->Init(group_name, destination, priority,
+ &connect_callback_, session_->tcp_socket_pool(),
+ load_log);
DCHECK(rv <= 0);
// If the connect is pending, we still return ok. The APIs enqueue
« no previous file with comments | « net/spdy/spdy_session.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698