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

Unified Diff: third_party/WebKit/Source/platform/wtf/text/WTFString.h

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
« no previous file with comments | « third_party/WebKit/Source/platform/wtf/text/StringView.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/wtf/text/WTFString.h
diff --git a/third_party/WebKit/Source/platform/wtf/text/WTFString.h b/third_party/WebKit/Source/platform/wtf/text/WTFString.h
index 73f0cd0b4e79e723b3c51e382f930b98c4f32444..61dc5fda0a3108a433315e817a4063672b4fe05b 100644
--- a/third_party/WebKit/Source/platform/wtf/text/WTFString.h
+++ b/third_party/WebKit/Source/platform/wtf/text/WTFString.h
@@ -475,7 +475,7 @@ inline bool operator!=(const char* a, const String& b) {
inline bool EqualPossiblyIgnoringCase(const String& a,
const String& b,
bool ignore_case) {
- return ignore_case ? EqualIgnoringCase(a, b) : (a == b);
+ return ignore_case ? DeprecatedEqualIgnoringCase(a, b) : (a == b);
}
inline bool EqualIgnoringNullity(const String& a, const String& b) {
« no previous file with comments | « third_party/WebKit/Source/platform/wtf/text/StringView.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698