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

Unified Diff: net/http/http_proxy_client_socket.cc

Issue 6990036: Deciding best connection to schedule requests on based on cwnd and idle time (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 years, 6 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
Index: net/http/http_proxy_client_socket.cc
===================================================================
--- net/http/http_proxy_client_socket.cc (revision 86260)
+++ net/http/http_proxy_client_socket.cc (working copy)
@@ -56,6 +56,7 @@
if (!user_agent.empty())
request_.extra_headers.SetHeader(HttpRequestHeaders::kUserAgent,
user_agent);
+ rtt_ms_ = transport_->socket()->GetRTTMs();
}
HttpProxyClientSocket::~HttpProxyClientSocket() {
@@ -182,7 +183,9 @@
return ERR_TUNNEL_CONNECTION_FAILED;
}
- return transport_->socket()->Read(buf, buf_len, callback);
+ int num = transport_->socket()->Read(buf, buf_len, callback);
+ num_bytes_read_ += num;
+ return num;
}
int HttpProxyClientSocket::Write(IOBuffer* buf, int buf_len,

Powered by Google App Engine
This is Rietveld 408576698