| Index: third_party/WebKit/Source/wtf/text/WTFString.h
|
| diff --git a/third_party/WebKit/Source/wtf/text/WTFString.h b/third_party/WebKit/Source/wtf/text/WTFString.h
|
| index d0382a01426a3d036922e3de9007f1b03c5e6b0a..b04d49f410594b0fe05fa0af75febd603b181e0b 100644
|
| --- a/third_party/WebKit/Source/wtf/text/WTFString.h
|
| +++ b/third_party/WebKit/Source/wtf/text/WTFString.h
|
| @@ -315,10 +315,10 @@ class WTF_EXPORT String {
|
| return StringImpl::createUninitialized(length, data);
|
| }
|
|
|
| - void split(const String& separator,
|
| + void split(const StringView& separator,
|
| bool allowEmptyEntries,
|
| Vector<String>& result) const;
|
| - void split(const String& separator, Vector<String>& result) const {
|
| + void split(const StringView& separator, Vector<String>& result) const {
|
| split(separator, false, result);
|
| }
|
| void split(UChar separator,
|
|
|