| 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) {
|
|
|