| 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 87a3259e54ccf689cd0e4af388f28f8e6c2dac66..6a2dff18b6ac10d1d2180b987d24200e931d4782 100644
 | 
| --- a/net/ssl/ssl_cipher_suite_names.cc
 | 
| +++ b/net/ssl/ssl_cipher_suite_names.cc
 | 
| @@ -349,7 +349,8 @@ bool ParseSSLCipherString(const std::string& cipher_string,
 | 
|                            uint16* cipher_suite) {
 | 
|    int value = 0;
 | 
|    if (cipher_string.size() == 6 &&
 | 
| -      StartsWithASCII(cipher_string, "0x", false /* case insensitive */) &&
 | 
| +      base::StartsWithASCII(cipher_string, "0x",
 | 
| +                            false /* case insensitive */) &&
 | 
|        base::HexStringToInt(cipher_string, &value)) {
 | 
|      *cipher_suite = static_cast<uint16>(value);
 | 
|      return true;
 | 
| 
 |