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

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

Issue 2821633002: Remove WTF::String::DeprecatedUpper() (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 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;
}

Powered by Google App Engine
This is Rietveld 408576698