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

Unified Diff: third_party/WebKit/Source/wtf/text/StringImpl.h

Issue 2508033004: Reduce unnecessary usage of TextCaseSensitivity::TextCaseInsensitive. (Closed)
Patch Set: Created 4 years, 1 month 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/wtf/text/StringImpl.h
diff --git a/third_party/WebKit/Source/wtf/text/StringImpl.h b/third_party/WebKit/Source/wtf/text/StringImpl.h
index 18a3519a9883a563e76de8f946ce32b0632d7c22..394033874017541a94a96406b2d171769cc1f4f4 100644
--- a/third_party/WebKit/Source/wtf/text/StringImpl.h
+++ b/third_party/WebKit/Source/wtf/text/StringImpl.h
@@ -55,7 +55,7 @@ enum TextCaseSensitivity {
// Unicode aware case insensitive matching. Non-ASCII characters might match
// to ASCII characters. This flag is rarely used to implement web platform
// features.
- TextCaseInsensitive
+ TextCaseUnicodeInsensitive
};
enum StripBehavior { StripExtraWhiteSpace, DoNotStripWhiteSpace };
@@ -840,7 +840,7 @@ struct DefaultHash<RefPtr<StringImpl>> {
using WTF::StringImpl;
using WTF::TextCaseASCIIInsensitive;
-using WTF::TextCaseInsensitive;
+using WTF::TextCaseUnicodeInsensitive;
using WTF::TextCaseSensitive;
using WTF::TextCaseSensitivity;
using WTF::equal;
« no previous file with comments | « third_party/WebKit/Source/web/WebFrameSerializerImpl.cpp ('k') | third_party/WebKit/Source/wtf/text/WTFStringTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698