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

Unified Diff: third_party/WebKit/Source/modules/crypto/NormalizeAlgorithm.cpp

Issue 2811793004: Rename EqualIgnoringCase*() to DeprecatedEqualIgnoringCase*() (Closed)
Patch Set: Created 3 years, 8 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: 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;

Powered by Google App Engine
This is Rietveld 408576698