| 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 995d4fe6d8f4a826f42477b442c43c96b456f664..e5580409ca4fac70f7311bc43167126087167be2 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
|
| @@ -176,13 +176,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) {
|
|
|