| Index: chrome/browser/ssl/chrome_security_state_model_client_browser_tests.cc
|
| diff --git a/chrome/browser/ssl/chrome_security_state_model_client_browser_tests.cc b/chrome/browser/ssl/chrome_security_state_model_client_browser_tests.cc
|
| index 64a9b83d86c975ebceb35bf440b583b751500291..303e50451e3f817bcef89ca32d2ebd3939bbbbce 100644
|
| --- a/chrome/browser/ssl/chrome_security_state_model_client_browser_tests.cc
|
| +++ b/chrome/browser/ssl/chrome_security_state_model_client_browser_tests.cc
|
| @@ -177,13 +177,14 @@ void CheckSecureExplanations(
|
| int ssl_version =
|
| net::SSLConnectionStatusToVersion(security_info.connection_status);
|
| net::SSLVersionToString(&protocol, ssl_version);
|
| - bool is_aead;
|
| + bool is_aead, is_tls13;
|
| uint16_t cipher_suite =
|
| net::SSLConnectionStatusToCipherSuite(security_info.connection_status);
|
| net::SSLCipherSuiteToStrings(&key_exchange, &cipher, &mac, &is_aead,
|
| - cipher_suite);
|
| + &is_tls13, cipher_suite);
|
| EXPECT_TRUE(is_aead);
|
| - EXPECT_EQ(NULL, mac); // The default secure cipher does not have a MAC.
|
| + EXPECT_EQ(nullptr, mac); // The default secure cipher does not have a MAC.
|
| + EXPECT_FALSE(is_tls13); // The default secure cipher is not TLS 1.3.
|
|
|
| base::string16 key_exchange_name = base::ASCIIToUTF16(key_exchange);
|
| if (security_info.key_exchange_group != 0) {
|
|
|