Record ConnectionType metrics in OpenSSL.

They were being recorded on the NSS side, but not the OpenSSL side.

BUG=430313

Review URL: https://codereview.chromium.org/698283003

Cr-Commit-Position: refs/heads/master@{#302888}
diff --git a/net/socket/ssl_client_socket_openssl.cc b/net/socket/ssl_client_socket_openssl.cc
index c0ce045..9fdfe38 100644
--- a/net/socket/ssl_client_socket_openssl.cc
+++ b/net/socket/ssl_client_socket_openssl.cc
@@ -1095,6 +1095,9 @@
     }
   }
 
+  if (result == OK)
+    RecordConnectionTypeMetrics(GetNetSSLVersion(ssl_));
+
   const CertStatus cert_status = server_cert_verify_result_.cert_status;
   if (transport_security_state_ &&
       (result == OK ||