| Index: third_party/WebKit/Source/wtf/text/WTFString.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/text/WTFString.cpp b/third_party/WebKit/Source/wtf/text/WTFString.cpp
|
| index 269f943ca06407145ee39359a9e7907a3b0577ba..d74327953aff5a5ce825cbf95084f8285fd8c2e7 100644
|
| --- a/third_party/WebKit/Source/wtf/text/WTFString.cpp
|
| +++ b/third_party/WebKit/Source/wtf/text/WTFString.cpp
|
| @@ -156,6 +156,11 @@ int codePointCompare(const String& a, const String& b)
|
| return codePointCompare(a.impl(), b.impl());
|
| }
|
|
|
| +int codePointCompareIgnoringASCIICase(const String& a, const char* b)
|
| +{
|
| + return codePointCompareIgnoringASCIICase(a.impl(), reinterpret_cast<const LChar*>(b));
|
| +}
|
| +
|
| void String::insert(const String& string, unsigned position)
|
| {
|
| if (string.isEmpty()) {
|
|
|