| 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 86f6e6bfae8ebd3eb6f36d25d237667142f2bc2a..4950c1d7c8381917b4456f84e5dd7c76c3bc7185 100644
|
| --- a/third_party/WebKit/Source/wtf/text/WTFString.h
|
| +++ b/third_party/WebKit/Source/wtf/text/WTFString.h
|
| @@ -192,9 +192,6 @@ public:
|
| size_t find(const LChar* str, unsigned start = 0) const
|
| { return m_impl ? m_impl->find(str, start) : kNotFound; }
|
|
|
| - size_t findNextLineStart(unsigned start = 0) const
|
| - { return m_impl ? m_impl->findNextLineStart(start) : kNotFound; }
|
| -
|
| // Find the last instance of a single character or string.
|
| size_t reverseFind(UChar c, unsigned start = UINT_MAX) const
|
| { return m_impl ? m_impl->reverseFind(c, start) : kNotFound; }
|
|
|