| Index: net/socket/ssl_client_socket_pool.cc
|
| diff --git a/net/socket/ssl_client_socket_pool.cc b/net/socket/ssl_client_socket_pool.cc
|
| index e8f643b7d158ceac4f6100653b635d658878656b..242a009f4fd76ad3d5e6c049e8589c0854db6905 100644
|
| --- a/net/socket/ssl_client_socket_pool.cc
|
| +++ b/net/socket/ssl_client_socket_pool.cc
|
| @@ -432,10 +432,11 @@ int SSLConnectJob::DoSSLConnectComplete(int result) {
|
| // These are hosts that we expect to always offer CECPQ1. Connections
|
| // to them, whether or not this browser is in the experiment group, form
|
| // the basis of our comparisons.
|
| - bool cecpq1_supported =
|
| + bool cecpq1_expected_to_be_offered =
|
| + ssl_info.is_issued_by_known_root &&
|
| (host == "play.google.com" || host == "checkout.google.com" ||
|
| host == "wallet.google.com");
|
| - if (cecpq1_supported) {
|
| + if (cecpq1_expected_to_be_offered) {
|
| UMA_HISTOGRAM_CUSTOM_TIMES(
|
| "Net.SSL_Connection_Latency_PostQuantumSupported_Full_Handshake",
|
| connect_duration, base::TimeDelta::FromMilliseconds(1),
|
|
|