| Index: third_party/WebKit/Source/wtf/text/StringImpl.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/text/StringImpl.cpp b/third_party/WebKit/Source/wtf/text/StringImpl.cpp
|
| index 850f9865ac606198c28768a81febec66f40264c6..728c076c8500db5c35fb923c2124f38bd09a38c3 100644
|
| --- a/third_party/WebKit/Source/wtf/text/StringImpl.cpp
|
| +++ b/third_party/WebKit/Source/wtf/text/StringImpl.cpp
|
| @@ -1992,14 +1992,6 @@ int codePointCompareIgnoringASCIICase(const StringImpl* string1, const LChar* st
|
| return codePointCompareIgnoringASCIICase(length1, length2, string1->characters16(), string2);
|
| }
|
|
|
| -size_t StringImpl::sizeInBytes() const
|
| -{
|
| - size_t size = length();
|
| - if (!is8Bit())
|
| - size *= 2;
|
| - return size + sizeof(*this);
|
| -}
|
| -
|
| UChar32 toUpper(UChar32 c, const AtomicString& localeIdentifier)
|
| {
|
| if (!localeIdentifier.isNull()) {
|
|
|