Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(676)

Unified Diff: Source/platform/text/LocaleICU.h

Issue 1213003004: Fix virtual/override/final usage in Source/platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/text/LineEnding.cpp ('k') | Source/platform/text/LocaleMac.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/text/LocaleICU.h
diff --git a/Source/platform/text/LocaleICU.h b/Source/platform/text/LocaleICU.h
index b1a00870d034c36b3f82317b63c59f9096a283b8..9cc75743038755b24166eeb6b93530bfdba0931e 100644
--- a/Source/platform/text/LocaleICU.h
+++ b/Source/platform/text/LocaleICU.h
@@ -47,29 +47,29 @@ namespace blink {
class PLATFORM_EXPORT LocaleICU : public Locale {
public:
static PassOwnPtr<LocaleICU> create(const char* localeString);
- virtual ~LocaleICU();
+ ~LocaleICU() 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;
+ const Vector<String>& weekDayShortLabels() override;
+ unsigned firstDayOfWeek() override;
+ bool isRTL() override;
+ String dateFormat() override;
+ String monthFormat() override;
+ String shortMonthFormat() override;
+ String timeFormat() override;
+ String shortTimeFormat() override;
+ String dateTimeFormatWithSeconds() override;
+ String dateTimeFormatWithoutSeconds() override;
+ const Vector<String>& monthLabels() override;
+ const Vector<String>& shortMonthLabels() override;
+ const Vector<String>& standAloneMonthLabels() override;
+ const Vector<String>& shortStandAloneMonthLabels() override;
+ const Vector<String>& timeAMPMLabels() override;
private:
explicit LocaleICU(const char*);
String decimalSymbol(UNumberFormatSymbol);
String decimalTextAttribute(UNumberFormatTextAttribute);
- virtual void initializeLocaleData() override;
+ void initializeLocaleData() override;
bool detectSignAndGetDigitRange(const String& input, bool& isNegative, unsigned& startIndex, unsigned& endIndex);
unsigned matchedDecimalSymbolIndex(const String& input, unsigned& position);
« no previous file with comments | « Source/platform/text/LineEnding.cpp ('k') | Source/platform/text/LocaleMac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698