| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_PREFERENCES_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_PREFERENCES_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_PREFERENCES_H_ | 6 #define CHROME_BROWSER_CHROMEOS_PREFERENCES_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "chrome/browser/chromeos/language_preferences.h" | 12 #include "chrome/browser/chromeos/language_preferences.h" |
| 13 #include "chrome/browser/pref_member.h" | 13 #include "chrome/browser/prefs/pref_member.h" |
| 14 #include "chrome/common/notification_observer.h" | 14 #include "chrome/common/notification_observer.h" |
| 15 | 15 |
| 16 class PrefService; | 16 class PrefService; |
| 17 | 17 |
| 18 namespace chromeos { | 18 namespace chromeos { |
| 19 | 19 |
| 20 // The Preferences class handles Chrome OS preferences. When the class | 20 // The Preferences class handles Chrome OS preferences. When the class |
| 21 // is first initialized, it will initialize the OS settings to what's stored in | 21 // is first initialized, it will initialize the OS settings to what's stored in |
| 22 // the preferences. These include touchpad settings, etc. | 22 // the preferences. These include touchpad settings, etc. |
| 23 // When the preferences change, we change the settings to reflect the new value. | 23 // When the preferences change, we change the settings to reflect the new value. |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 BooleanPrefMember language_xkb_auto_repeat_enabled_; | 120 BooleanPrefMember language_xkb_auto_repeat_enabled_; |
| 121 IntegerPrefMember language_xkb_auto_repeat_delay_pref_; | 121 IntegerPrefMember language_xkb_auto_repeat_delay_pref_; |
| 122 IntegerPrefMember language_xkb_auto_repeat_interval_pref_; | 122 IntegerPrefMember language_xkb_auto_repeat_interval_pref_; |
| 123 | 123 |
| 124 DISALLOW_COPY_AND_ASSIGN(Preferences); | 124 DISALLOW_COPY_AND_ASSIGN(Preferences); |
| 125 }; | 125 }; |
| 126 | 126 |
| 127 } // namespace chromeos | 127 } // namespace chromeos |
| 128 | 128 |
| 129 #endif // CHROME_BROWSER_CHROMEOS_PREFERENCES_H_ | 129 #endif // CHROME_BROWSER_CHROMEOS_PREFERENCES_H_ |
| OLD | NEW |