Home | History | Annotate | Download | only in system

Lines Matching refs:timezone

11 #include "third_party/icu/source/i18n/unicode/timezone.h"
16 // This interface provides access to Chrome OS timezone settings.
21 // Called when the timezone has changed. |timezone| is non-null.
22 virtual void TimezoneChanged(const icu::TimeZone& timezone) = 0;
29 // Returns the current timezone as an icu::Timezone object.
30 virtual const icu::TimeZone& GetTimezone() = 0;
33 // Sets the current timezone and notifies all Observers.
34 virtual void SetTimezone(const icu::TimeZone& timezone) = 0;
40 virtual const std::vector<icu::TimeZone*>& GetTimezoneList() const = 0;
42 // Gets timezone ID which is also used as timezone pref value.
43 static string16 GetTimezoneID(const icu::TimeZone& timezone);