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

Unified Diff: net/socket/client_socket_handle.cc

Issue 1127623005: Gather metrics classifying the cause of the TLS fallback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fallback-required
Patch Set: rebase Created 5 years, 7 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/socket/client_socket_handle.cc
diff --git a/net/socket/client_socket_handle.cc b/net/socket/client_socket_handle.cc
index 734e58aeffff7369f6547ec84a98d8307d10d26e..c70676c5ee34192cef5f43ca4372ca1978053c5c 100644
--- a/net/socket/client_socket_handle.cc
+++ b/net/socket/client_socket_handle.cc
@@ -21,7 +21,9 @@ ClientSocketHandle::ClientSocketHandle()
reuse_type_(ClientSocketHandle::UNUSED),
callback_(base::Bind(&ClientSocketHandle::OnIOComplete,
base::Unretained(this))),
- is_ssl_error_(false) {}
+ is_ssl_error_(false),
+ ssl_failure_state_(kSSLFailureNone) {
+}
ClientSocketHandle::~ClientSocketHandle() {
Reset();

Powered by Google App Engine
This is Rietveld 408576698