| Index: third_party/WebKit/Source/platform/text/LocaleWin.h
|
| diff --git a/third_party/WebKit/Source/platform/text/LocaleWin.h b/third_party/WebKit/Source/platform/text/LocaleWin.h
|
| index 373a1fb8e3336911cf93104713af9b3b9f9cc44f..485e34bfe8f5c6e674831872767a4102762a4c87 100644
|
| --- a/third_party/WebKit/Source/platform/text/LocaleWin.h
|
| +++ b/third_party/WebKit/Source/platform/text/LocaleWin.h
|
| @@ -31,17 +31,18 @@
|
| #ifndef LocaleWin_h
|
| #define LocaleWin_h
|
|
|
| -#include <windows.h>
|
| #include "platform/text/PlatformLocale.h"
|
| #include "wtf/Forward.h"
|
| #include "wtf/Vector.h"
|
| #include "wtf/text/WTFString.h"
|
| +#include <memory>
|
| +#include <windows.h>
|
|
|
| namespace blink {
|
|
|
| class PLATFORM_EXPORT LocaleWin : public Locale {
|
| public:
|
| - static PassOwnPtr<LocaleWin> create(LCID, bool defaultsForLocale);
|
| + static std::unique_ptr<LocaleWin> create(LCID, bool defaultsForLocale);
|
| ~LocaleWin();
|
| const Vector<String>& weekDayShortLabels() override;
|
| unsigned firstDayOfWeek() override;
|
|
|