| 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 bc751f5ab80128e614046bef1ae36b199875752b..22c6d0b4e97461aee4ce87293a11573f2b310e0c 100644
|
| --- a/third_party/WebKit/Source/wtf/text/WTFString.cpp
|
| +++ b/third_party/WebKit/Source/wtf/text/WTFString.cpp
|
| @@ -88,15 +88,6 @@ String::String(const char* characters, unsigned length)
|
| length)
|
| : nullptr) {}
|
|
|
| -// Construct a string with latin1 data, from a null-terminated source.
|
| -String::String(const LChar* characters)
|
| - : m_impl(characters ? StringImpl::create(characters) : nullptr) {}
|
| -
|
| -String::String(const char* characters)
|
| - : m_impl(characters ? StringImpl::create(
|
| - reinterpret_cast<const LChar*>(characters))
|
| - : nullptr) {}
|
| -
|
| void String::append(const StringView& string) {
|
| if (string.isEmpty())
|
| return;
|
|
|