| Index: third_party/WebKit/Source/wtf/text/Collator.h
|
| diff --git a/third_party/WebKit/Source/wtf/text/Collator.h b/third_party/WebKit/Source/wtf/text/Collator.h
|
| index 247d65d870064e192c94ed7b270a10da8a9217b7..18b1efe5c8c49caa797554ae53250b8844c7321f 100644
|
| --- a/third_party/WebKit/Source/wtf/text/Collator.h
|
| +++ b/third_party/WebKit/Source/wtf/text/Collator.h
|
| @@ -31,9 +31,9 @@
|
|
|
| #include "wtf/Allocator.h"
|
| #include "wtf/Noncopyable.h"
|
| -#include "wtf/PassOwnPtr.h"
|
| #include "wtf/WTFExport.h"
|
| #include "wtf/text/Unicode.h"
|
| +#include <memory>
|
|
|
| struct UCollator;
|
|
|
| @@ -52,7 +52,7 @@ public:
|
| ~Collator();
|
| void setOrderLowerFirst(bool);
|
|
|
| - static PassOwnPtr<Collator> userDefault();
|
| + static std::unique_ptr<Collator> userDefault();
|
|
|
| Result collate(const ::UChar*, size_t, const ::UChar*, size_t) const;
|
|
|
|
|