diff options
author | chocobo@chromium.org <chocobo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-30 23:18:15 +0000 |
---|---|---|
committer | chocobo@chromium.org <chocobo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-30 23:18:15 +0000 |
commit | 94a922b85962d298dbc5e66e88862e060a731eff (patch) | |
tree | d1fb5d35a13b893cf0e0a4af8fb127d31bd45c9a /chrome/browser/chromeos/preferences.h | |
parent | ed3939c9ba23e100035e68f54fcc372c49c202cc (diff) | |
download | chromium_src-94a922b85962d298dbc5e66e88862e060a731eff.zip chromium_src-94a922b85962d298dbc5e66e88862e060a731eff.tar.gz chromium_src-94a922b85962d298dbc5e66e88862e060a731eff.tar.bz2 |
Fix it so that we save timezone properly. We are now going through libcros (instead of a preference) to save the timezone.
BUG=chromium-os:1025
TEST=ClockMenuButtonTest
Review URL: http://codereview.chromium.org/2828024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51311 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/preferences.h')
-rw-r--r-- | chrome/browser/chromeos/preferences.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/chrome/browser/chromeos/preferences.h b/chrome/browser/chromeos/preferences.h index 9f1770c..81c1f8c 100644 --- a/chrome/browser/chromeos/preferences.h +++ b/chrome/browser/chromeos/preferences.h @@ -18,7 +18,7 @@ namespace chromeos { // The Preferences class handles Chrome OS preferences. When the class // is first initialized, it will initialize the OS settings to what's stored in -// the preferences. These include timezones, touchpad settings, etc. +// the preferences. These include touchpad settings, etc. // When the preferences change, we change the settings to reflect the new value. class Preferences : public NotificationObserver { public: @@ -43,8 +43,6 @@ class Preferences : public NotificationObserver { virtual void NotifyPrefChanged(const std::wstring* pref_name); private: - void SetTimeZone(const std::string& id); - // Writes boolean |value| to the input method (IBus) configuration daemon. // |section| (e.g. "general") and |name| (e.g. "use_global_engine") should // not be NULL. @@ -76,7 +74,6 @@ class Preferences : public NotificationObserver { const char* name, const std::string& value); - StringPrefMember timezone_; BooleanPrefMember tap_to_click_enabled_; BooleanPrefMember vert_edge_scroll_enabled_; BooleanPrefMember accessibility_enabled_; |