Index: net/ssl/ssl_cipher_suite_names.cc |
diff --git a/net/ssl/ssl_cipher_suite_names.cc b/net/ssl/ssl_cipher_suite_names.cc |
index 6a2dff18b6ac10d1d2180b987d24200e931d4782..271ccdfd90f7d6ef6116e99a625556d5f9fe94fd 100644 |
--- a/net/ssl/ssl_cipher_suite_names.cc |
+++ b/net/ssl/ssl_cipher_suite_names.cc |
@@ -349,8 +349,8 @@ bool ParseSSLCipherString(const std::string& cipher_string, |
uint16* cipher_suite) { |
int value = 0; |
if (cipher_string.size() == 6 && |
- base::StartsWithASCII(cipher_string, "0x", |
- false /* case insensitive */) && |
+ base::StartsWith(cipher_string, "0x", |
+ base::CompareCase::INSENSITIVE_ASCII) && |
base::HexStringToInt(cipher_string, &value)) { |
*cipher_suite = static_cast<uint16>(value); |
return true; |