| Index: third_party/WebKit/Source/modules/crypto/NormalizeAlgorithm.cpp
|
| diff --git a/third_party/WebKit/Source/modules/crypto/NormalizeAlgorithm.cpp b/third_party/WebKit/Source/modules/crypto/NormalizeAlgorithm.cpp
|
| index 7cd86623ca6e64993877cb1ed1e753bdc8580f35..f5120fabe58daa30808106a6008fe68750d17eeb 100644
|
| --- a/third_party/WebKit/Source/modules/crypto/NormalizeAlgorithm.cpp
|
| +++ b/third_party/WebKit/Source/modules/crypto/NormalizeAlgorithm.cpp
|
| @@ -140,7 +140,7 @@ bool VerifyAlgorithmNameMappings(const AlgorithmNameMapping* begin,
|
| String str(it->algorithm_name, it->algorithm_name_length);
|
| if (!str.ContainsOnlyASCII())
|
| return false;
|
| - if (str.DeprecatedUpper() != str)
|
| + if (str.UpperASCII() != str)
|
| return false;
|
| }
|
|
|
|
|