summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/preferences.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/chromeos/preferences.h')
-rw-r--r--chrome/browser/chromeos/preferences.h13
1 files changed, 2 insertions, 11 deletions
diff --git a/chrome/browser/chromeos/preferences.h b/chrome/browser/chromeos/preferences.h
index 9269915..6568961 100644
--- a/chrome/browser/chromeos/preferences.h
+++ b/chrome/browser/chromeos/preferences.h
@@ -14,7 +14,6 @@
#include "chrome/common/notification_observer.h"
class PrefService;
-class Profile;
namespace chromeos {
@@ -24,8 +23,8 @@ namespace chromeos {
// When the preferences change, we change the settings to reflect the new value.
class Preferences : public NotificationObserver {
public:
- explicit Preferences(Profile* profile);
- virtual ~Preferences() {}
+ Preferences();
+ virtual ~Preferences();
// This method will register the prefs associated with Chrome OS settings.
static void RegisterUserPrefs(PrefService* prefs);
@@ -83,11 +82,6 @@ class Preferences : public NotificationObserver {
// underlying XKB API requires it.
void UpdateAutoRepeatRate();
- // Updates whether the Talk app is enabled.
- void UpdateTalkApp();
-
- Profile* profile_;
-
BooleanPrefMember tap_to_click_enabled_;
BooleanPrefMember vert_edge_scroll_enabled_;
BooleanPrefMember accessibility_enabled_;
@@ -126,9 +120,6 @@ class Preferences : public NotificationObserver {
IntegerPrefMember language_xkb_auto_repeat_delay_pref_;
IntegerPrefMember language_xkb_auto_repeat_interval_pref_;
- // Labs preferences.
- IntegerPrefMember labs_talk_enabled_;
-
BooleanPrefMember enable_screen_lock_;
DISALLOW_COPY_AND_ASSIGN(Preferences);