| Index: Source/platform/text/LocaleWin.h
|
| diff --git a/Source/platform/text/LocaleWin.h b/Source/platform/text/LocaleWin.h
|
| index 5decf14d632f157916bbad7b9029eae2b10ad1cf..57dffd699eb133d58fadbfcea38112b95ca2c05c 100644
|
| --- a/Source/platform/text/LocaleWin.h
|
| +++ b/Source/platform/text/LocaleWin.h
|
| @@ -43,21 +43,21 @@ class PLATFORM_EXPORT LocaleWin : public Locale {
|
| public:
|
| static PassOwnPtr<LocaleWin> create(LCID, bool defaultsForLocale);
|
| ~LocaleWin();
|
| - 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 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;
|
|
|
| static String dateFormat(const String&);
|
|
|
| @@ -69,7 +69,7 @@ private:
|
| void ensureMonthLabels();
|
| void ensureWeekDayShortLabels();
|
| // Locale function:
|
| - virtual void initializeLocaleData() OVERRIDE;
|
| + virtual void initializeLocaleData() override;
|
|
|
| LCID m_lcid;
|
| Vector<String> m_shortMonthLabels;
|
|
|