Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_PREFS_PREF_SERVICE_SIMPLE_H_ | |
| 6 #define CHROME_BROWSER_PREFS_PREF_SERVICE_SIMPLE_H_ | |
| 7 | |
| 8 #include "chrome/browser/prefs/pref_service.h" | |
| 9 | |
| 10 // A simple PrefService implementation. | |
| 11 class PrefServiceSimple : public PrefService { | |
| 12 public: | |
| 13 void RegisterBooleanPref(const char* path, bool default_value); | |
| 14 void RegisterIntegerPref(const char* path, int default_value); | |
| 15 void RegisterDoublePref(const char* path, double default_value); | |
| 16 void RegisterStringPref(const char* path, const std::string& default_value); | |
| 17 void RegisterFilePathPref(const char* path, const FilePath& default_value); | |
| 18 void RegisterListPref(const char* path); | |
| 19 void RegisterDictionaryPref(const char* path); | |
| 20 void RegisterListPref(const char* path, base::ListValue* default_value); | |
| 21 void RegisterDictionaryPref( | |
| 22 const char* path, base::DictionaryValue* default_value); | |
| 23 void RegisterInt64Pref(const char* path, | |
| 24 int64 default_value); | |
| 25 protected: | |
| 26 // Only use ChromePrefServiceFactory to create initialized PrefServiceSimple | |
| 27 // objects. | |
| 28 PrefServiceSimple(); | |
|
Mattias Nissler (ping if slow)
2012/12/21 13:09:31
still needs a virtual dtor (I thought there was ag
Jói
2012/12/21 14:34:13
Done.
| |
| 29 | |
| 30 // Constructs objects. | |
| 31 friend class ChromePrefServiceFactory; | |
| 32 friend class PrefServiceMockBuilder; | |
| 33 | |
| 34 private: | |
| 35 DISALLOW_COPY_AND_ASSIGN(PrefServiceSimple); | |
| 36 }; | |
| 37 | |
| 38 #endif // CHROME_BROWSER_PREFS_PREF_SERVICE_SIMPLE_H_ | |
| OLD | NEW |