| 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 e69483c74cf3e878294b4d5226807e4867ff9c75..a5f1d154a4ce0daf00006eb0b69ef00ac1243e3e 100644
 | 
| --- a/third_party/WebKit/Source/modules/crypto/NormalizeAlgorithm.cpp
 | 
| +++ b/third_party/WebKit/Source/modules/crypto/NormalizeAlgorithm.cpp
 | 
| @@ -194,7 +194,7 @@ bool LookupAlgorithmIdByName(const String& algorithm_name,
 | 
|      return false;
 | 
|  
 | 
|    if (it->algorithm_name_length != algorithm_name.length() ||
 | 
| -      !EqualIgnoringCase(algorithm_name, it->algorithm_name))
 | 
| +      !DeprecatedEqualIgnoringCase(algorithm_name, it->algorithm_name))
 | 
|      return false;
 | 
|  
 | 
|    id = it->algorithm_id;
 | 
| 
 |