| Index: third_party/WebKit/Source/wtf/text/AtomicString.h
|
| diff --git a/third_party/WebKit/Source/wtf/text/AtomicString.h b/third_party/WebKit/Source/wtf/text/AtomicString.h
|
| index f5d1df0ed222c2e1dc3af821a926486cdad82f8c..eb95915b306b4b1e19d927199d190daa492ab522 100644
|
| --- a/third_party/WebKit/Source/wtf/text/AtomicString.h
|
| +++ b/third_party/WebKit/Source/wtf/text/AtomicString.h
|
| @@ -170,14 +170,6 @@ inline bool operator!=(const char* a, const AtomicString& b) { return !(b == a);
|
| inline bool operator!=(const String& a, const AtomicString& b) { return !equal(a.impl(), b.impl()); }
|
| inline bool operator!=(const Vector<UChar>& a, const AtomicString& b) { return !(a == b); }
|
|
|
| -inline bool equalIgnoringCase(const AtomicString& a, const AtomicString& b) { return equalIgnoringCase(a.impl(), b.impl()); }
|
| -inline bool equalIgnoringCase(const AtomicString& a, const LChar* b) { return equalIgnoringCase(a.impl(), b); }
|
| -inline bool equalIgnoringCase(const AtomicString& a, const char* b) { return equalIgnoringCase(a.impl(), reinterpret_cast<const LChar*>(b)); }
|
| -inline bool equalIgnoringCase(const AtomicString& a, const String& b) { return equalIgnoringCase(a.impl(), b.impl()); }
|
| -inline bool equalIgnoringCase(const LChar* a, const AtomicString& b) { return equalIgnoringCase(a, b.impl()); }
|
| -inline bool equalIgnoringCase(const char* a, const AtomicString& b) { return equalIgnoringCase(reinterpret_cast<const LChar*>(a), b.impl()); }
|
| -inline bool equalIgnoringCase(const String& a, const AtomicString& b) { return equalIgnoringCase(a.impl(), b.impl()); }
|
| -
|
| // Define external global variables for the commonly used atomic strings.
|
| // These are only usable from the main thread.
|
| WTF_EXPORT extern const AtomicString& nullAtom;
|
|
|