Chromium Code Reviews| 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 e54f79c929cee2b2eacb398bfa8896bcc64b212b..2d94453865850ac265544398df32bd81abb729f3 100644 |
| --- a/net/socket/ssl_client_socket_pool.cc |
| +++ b/net/socket/ssl_client_socket_pool.cc |
| @@ -516,9 +516,9 @@ int SSLConnectJob::DoSSLConnectComplete(int result) { |
| } |
| const std::string& host = params_->host_and_port().host(); |
| - bool is_google = |
| - host == "google.com" || |
| - (host.size() > 11 && host.rfind(".google.com") == host.size() - 11); |
|
wtc
2014/08/07 21:52:17
Since this change is already checked in, it is not
|
| + bool is_google = host == "google.com" || |
| + (host.size() > 11 && |
| + host.rfind(".google.com") == host.size() - 11); |
| if (is_google) { |
| UMA_HISTOGRAM_CUSTOM_TIMES("Net.SSL_Connection_Latency_Google2", |
| connect_duration, |