| Index: Source/platform/text/LocaleMac.h
|
| diff --git a/Source/platform/text/LocaleMac.h b/Source/platform/text/LocaleMac.h
|
| index cb49b62cfb6c96a5ffecef839d79483076fe57d3..0b233070a0d30ca10a77817b7c6269fa896725cf 100644
|
| --- a/Source/platform/text/LocaleMac.h
|
| +++ b/Source/platform/text/LocaleMac.h
|
| @@ -49,27 +49,27 @@ public:
|
| static PassOwnPtr<LocaleMac> create(NSLocale*);
|
| ~LocaleMac();
|
|
|
| - virtual const Vector<String>& weekDayShortLabels() OVERRIDE;
|
| - virtual unsigned firstDayOfWeek() OVERRIDE;
|
| - virtual bool isRTL() OVERRIDE;
|
| + virtual const Vector<String>& weekDayShortLabels() override;
|
| + virtual unsigned firstDayOfWeek() override;
|
| + virtual bool isRTL() override;
|
|
|
| - virtual String dateFormat() OVERRIDE;
|
| - virtual String monthFormat() OVERRIDE;
|
| - virtual String shortMonthFormat() OVERRIDE;
|
| - virtual String timeFormat() OVERRIDE;
|
| - virtual String shortTimeFormat() OVERRIDE;
|
| - virtual String dateTimeFormatWithSeconds() OVERRIDE;
|
| - virtual String dateTimeFormatWithoutSeconds() OVERRIDE;
|
| - virtual const Vector<String>& monthLabels() OVERRIDE;
|
| - virtual const Vector<String>& shortMonthLabels() OVERRIDE;
|
| - virtual const Vector<String>& standAloneMonthLabels() OVERRIDE;
|
| - virtual const Vector<String>& shortStandAloneMonthLabels() OVERRIDE;
|
| - virtual const Vector<String>& timeAMPMLabels() OVERRIDE;
|
| + virtual String dateFormat() override;
|
| + virtual String monthFormat() override;
|
| + virtual String shortMonthFormat() override;
|
| + virtual String timeFormat() override;
|
| + virtual String shortTimeFormat() override;
|
| + virtual String dateTimeFormatWithSeconds() override;
|
| + virtual String dateTimeFormatWithoutSeconds() override;
|
| + virtual const Vector<String>& monthLabels() override;
|
| + virtual const Vector<String>& shortMonthLabels() override;
|
| + virtual const Vector<String>& standAloneMonthLabels() override;
|
| + virtual const Vector<String>& shortStandAloneMonthLabels() override;
|
| + virtual const Vector<String>& timeAMPMLabels() override;
|
|
|
| private:
|
| explicit LocaleMac(NSLocale*);
|
| RetainPtr<NSDateFormatter> shortDateFormatter();
|
| - virtual void initializeLocaleData() OVERRIDE;
|
| + virtual void initializeLocaleData() override;
|
|
|
| RetainPtr<NSLocale> m_locale;
|
| RetainPtr<NSCalendar> m_gregorianCalendar;
|
|
|