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

Unified Diff: net/http/http_stream_factory_impl_job.cc

Issue 2093873002: Unwind fallback metrics and SSLFailureState. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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_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 b137b913bbaaa4f691b44bffe31141533f96c034..99362886e70675856df639e078be6f89902d9d8f 100644
--- a/net/http/http_stream_factory_impl_job.cc
+++ b/net/http/http_stream_factory_impl_job.cc
@@ -51,7 +51,6 @@
#include "net/ssl/channel_id_service.h"
#include "net/ssl/ssl_cert_request_info.h"
#include "net/ssl/ssl_connection_status_flags.h"
-#include "net/ssl/ssl_failure_state.h"
namespace net {
@@ -473,11 +472,7 @@ void HttpStreamFactoryImpl::Job::OnStreamFailedCallback(int result) {
MaybeCopyConnectionAttemptsFromSocketOrHandle();
- SSLFailureState ssl_failure_state =
- connection_ ? connection_->ssl_failure_state() : SSL_FAILURE_NONE;
-
- delegate_->OnStreamFailed(this, result, server_ssl_config_,
- ssl_failure_state);
+ delegate_->OnStreamFailed(this, result, server_ssl_config_);
// |this| may be deleted after this call.
}

Powered by Google App Engine
This is Rietveld 408576698