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

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

Issue 52553008: Eliminate the CALENDAR_PICKER compile time flag as only android uses this flag and the web facing p… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Fix winbot by eliminating last checks for CALENDAR_PICKER Created 7 years, 1 month 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
Index: Source/platform/text/LocaleMac.h
diff --git a/Source/platform/text/LocaleMac.h b/Source/platform/text/LocaleMac.h
index e6a90f867af7618a1626fc6b5d71a7ec7d236536..c4623e0c8463d2f0a97b91ebd394fa38af895a95 100644
--- a/Source/platform/text/LocaleMac.h
+++ b/Source/platform/text/LocaleMac.h
@@ -51,11 +51,9 @@ public:
static PassOwnPtr<LocaleMac> create(NSLocale*);
~LocaleMac();
-#if ENABLE(CALENDAR_PICKER)
virtual const Vector<String>& weekDayShortLabels() OVERRIDE;
virtual unsigned firstDayOfWeek() OVERRIDE;
virtual bool isRTL() OVERRIDE;
-#endif
virtual String dateFormat() OVERRIDE;
virtual String monthFormat() OVERRIDE;
@@ -77,9 +75,7 @@ private:
RetainPtr<NSLocale> m_locale;
RetainPtr<NSCalendar> m_gregorianCalendar;
-#if ENABLE(CALENDAR_PICKER)
Vector<String> m_weekDayShortLabels;
-#endif
Vector<String> m_monthLabels;
RetainPtr<NSDateFormatter> timeFormatter();
RetainPtr<NSDateFormatter> shortTimeFormatter();

Powered by Google App Engine
This is Rietveld 408576698