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

Unified Diff: net/http/http_stream_factory_impl_request.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_request.cc
diff --git a/net/http/http_stream_factory_impl_request.cc b/net/http/http_stream_factory_impl_request.cc
index 2b0769a08f8d160dd99ff0f20ddb1df1576d3e71..09962039c6d6ecabad78bec566c88d80ebd52942 100644
--- a/net/http/http_stream_factory_impl_request.cc
+++ b/net/http/http_stream_factory_impl_request.cc
@@ -86,9 +86,8 @@ void HttpStreamFactoryImpl::Request::OnWebSocketHandshakeStreamReady(
void HttpStreamFactoryImpl::Request::OnStreamFailed(
int status,
- const SSLConfig& used_ssl_config,
- SSLFailureState ssl_failure_state) {
- delegate_->OnStreamFailed(status, used_ssl_config, ssl_failure_state);
+ const SSLConfig& used_ssl_config) {
+ delegate_->OnStreamFailed(status, used_ssl_config);
}
void HttpStreamFactoryImpl::Request::OnCertificateError(

Powered by Google App Engine
This is Rietveld 408576698