| Index: third_party/WebKit/Source/wtf/text/TextPosition.h
|
| diff --git a/third_party/WebKit/Source/wtf/text/TextPosition.h b/third_party/WebKit/Source/wtf/text/TextPosition.h
|
| index 17140c3a7c30d678722c72a494f8f902fce9f188..f4c62eb49cb8bd642147acc508be74dfd2827f74 100644
|
| --- a/third_party/WebKit/Source/wtf/text/TextPosition.h
|
| +++ b/third_party/WebKit/Source/wtf/text/TextPosition.h
|
| @@ -30,6 +30,7 @@
|
| #include "wtf/Vector.h"
|
| #include "wtf/WTFExport.h"
|
| #include "wtf/text/WTFString.h"
|
| +#include <memory>
|
|
|
| namespace WTF {
|
|
|
| @@ -86,7 +87,7 @@ public:
|
| OrdinalNumber m_column;
|
| };
|
|
|
| -WTF_EXPORT PassOwnPtr<Vector<unsigned>> lineEndings(const String&);
|
| +WTF_EXPORT std::unique_ptr<Vector<unsigned>> lineEndings(const String&);
|
|
|
| } // namespace WTF
|
|
|
|
|