Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Unified Diff: chrome/browser/ssl/chrome_security_state_model_client_browser_tests.cc

Issue 2418113002: Revert "Roll src/third_party/boringssl/src 0d81373f9..1991af690" (https://codereview.chromium.org/2… (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 daeaafb962ab24fd1ef07a7801d9dd0fa0346e3e..2b2cff227c500c05f15335dfab51afb87f0e1f2d 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,14 +177,13 @@ void CheckSecureExplanations(
int ssl_version =
net::SSLConnectionStatusToVersion(security_info.connection_status);
net::SSLVersionToString(&protocol, ssl_version);
- bool is_aead, is_tls13;
+ bool is_aead;
uint16_t cipher_suite =
net::SSLConnectionStatusToCipherSuite(security_info.connection_status);
net::SSLCipherSuiteToStrings(&key_exchange, &cipher, &mac, &is_aead,
- &is_tls13, cipher_suite);
+ cipher_suite);
EXPECT_TRUE(is_aead);
- 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.
+ EXPECT_EQ(NULL, mac); // The default secure cipher does not have a MAC.
base::string16 key_exchange_name = base::ASCIIToUTF16(key_exchange);
if (security_info.key_exchange_group != 0) {

Powered by Google App Engine
This is Rietveld 408576698