Home | History | Annotate | Download | only in chromeos

Lines Matching refs:timezone

13 #include "third_party/icu/public/i18n/unicode/timezone.h"
31 virtual void TimezoneChanged(const icu::TimeZone& timezone);
40 // Gets timezone name.
41 static string16 GetTimezoneName(const icu::TimeZone& timezone);
43 // Gets timezone ID which is also used as timezone pref value.
44 static string16 GetTimezoneID(const icu::TimeZone& timezone);
46 // Gets timezone object from its id.
47 const icu::TimeZone* GetTimezone(const string16& timezone_id);
49 // Gets a timezone id from a timezone in |timezones_| that has the same
50 // rule of given |timezone|.
51 // One timezone could have multiple timezones,
54 // We should always use the known timezone id when passing back as
56 string16 GetKnownTimezoneID(const icu::TimeZone& timezone) const;
59 std::vector<icu::TimeZone*> timezones_;