Home | History | Annotate | Download | only in settings

Lines Matching refs:timezone

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