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

Unified Diff: net/http/http_stream_factory_impl_job_controller.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_controller.cc
diff --git a/net/http/http_stream_factory_impl_job_controller.cc b/net/http/http_stream_factory_impl_job_controller.cc
index bd3f2e3bd7cdad801af6e1202c231e9f134b909f..292aabfd5a59425da0ca08e514843acabf178fc2 100644
--- a/net/http/http_stream_factory_impl_job_controller.cc
+++ b/net/http/http_stream_factory_impl_job_controller.cc
@@ -221,8 +221,7 @@ void HttpStreamFactoryImpl::JobController::OnWebSocketHandshakeStreamReady(
void HttpStreamFactoryImpl::JobController::OnStreamFailed(
Job* job,
int status,
- const SSLConfig& used_ssl_config,
- SSLFailureState ssl_failure_state) {
+ const SSLConfig& used_ssl_config) {
if (job_bound_ && bound_job_ != job) {
// We have bound a job to the associated Request, |job| has been orphaned.
OnOrphanedJobComplete(job);
@@ -254,7 +253,7 @@ void HttpStreamFactoryImpl::JobController::OnStreamFailed(
}
}
- request_->OnStreamFailed(status, used_ssl_config, ssl_failure_state);
+ request_->OnStreamFailed(status, used_ssl_config);
}
void HttpStreamFactoryImpl::JobController::OnCertificateError(

Powered by Google App Engine
This is Rietveld 408576698