| Index: third_party/WebKit/Source/platform/text/LocaleMac.h
|
| diff --git a/third_party/WebKit/Source/platform/text/LocaleMac.h b/third_party/WebKit/Source/platform/text/LocaleMac.h
|
| index ec3a367b1667c93511207d2951f0a6eab9a0354c..8a8a5630e8cc236d85d42582e40c9194013e3fc0 100644
|
| --- a/third_party/WebKit/Source/platform/text/LocaleMac.h
|
| +++ b/third_party/WebKit/Source/platform/text/LocaleMac.h
|
| @@ -36,7 +36,6 @@
|
| #include "wtf/RetainPtr.h"
|
| #include "wtf/Vector.h"
|
| #include "wtf/text/WTFString.h"
|
| -#include <memory>
|
|
|
| OBJC_CLASS NSCalendar;
|
| OBJC_CLASS NSDateFormatter;
|
| @@ -46,8 +45,8 @@ namespace blink {
|
|
|
| class PLATFORM_EXPORT LocaleMac : public Locale {
|
| public:
|
| - static std::unique_ptr<LocaleMac> create(const String&);
|
| - static std::unique_ptr<LocaleMac> create(NSLocale*);
|
| + static PassOwnPtr<LocaleMac> create(const String&);
|
| + static PassOwnPtr<LocaleMac> create(NSLocale*);
|
| ~LocaleMac();
|
|
|
| const Vector<String>& weekDayShortLabels() override;
|
|
|