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

Unified Diff: net/http/http_stream_factory_impl_job.cc

Issue 1212493003: Fix accounting and logging of HttpStream request and job bindings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@stream-job-logging
Patch Set: comment typo Created 5 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
« no previous file with comments | « net/http/http_stream_factory_impl.cc ('k') | net/http/http_stream_factory_impl_request.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_stream_factory_impl_job.cc
diff --git a/net/http/http_stream_factory_impl_job.cc b/net/http/http_stream_factory_impl_job.cc
index f0d3a4f75591622553402605ea1776f029ffa85c..cca64c1b9519921bf7bc5a251d7276736cd78467 100644
--- a/net/http/http_stream_factory_impl_job.cc
+++ b/net/http/http_stream_factory_impl_job.cc
@@ -326,10 +326,8 @@ void HttpStreamFactoryImpl::Job::OnStreamReadyCallback() {
if (IsOrphaned()) {
stream_factory_->OnOrphanedJobComplete(this);
} else {
- request_->Complete(was_npn_negotiated(),
- protocol_negotiated(),
- using_spdy(),
- net_log_);
+ request_->Complete(was_npn_negotiated(), protocol_negotiated(),
+ using_spdy());
request_->OnStreamReady(this, server_ssl_config_, proxy_info_,
stream_.release());
}
@@ -346,10 +344,7 @@ void HttpStreamFactoryImpl::Job::OnWebSocketHandshakeStreamReadyCallback() {
MaybeCopyConnectionAttemptsFromSocketOrHandle();
- request_->Complete(was_npn_negotiated(),
- protocol_negotiated(),
- using_spdy(),
- net_log_);
+ request_->Complete(was_npn_negotiated(), protocol_negotiated(), using_spdy());
request_->OnWebSocketHandshakeStreamReady(this,
server_ssl_config_,
proxy_info_,
« no previous file with comments | « net/http/http_stream_factory_impl.cc ('k') | net/http/http_stream_factory_impl_request.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698