OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_PREFS_PREF_VALUE_MAP_H_ | 5 #ifndef CHROME_BROWSER_PREFS_PREF_VALUE_MAP_H_ |
6 #define CHROME_BROWSER_PREFS_PREF_VALUE_MAP_H_ | 6 #define CHROME_BROWSER_PREFS_PREF_VALUE_MAP_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
| 11 #include <vector> |
11 | 12 |
12 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
13 | 14 |
14 class Value; | 15 class Value; |
15 | 16 |
16 // A generic string to value map used by the PrefStore implementations. | 17 // A generic string to value map used by the PrefStore implementations. |
17 class PrefValueMap { | 18 class PrefValueMap { |
18 public: | 19 public: |
19 PrefValueMap(); | 20 PrefValueMap(); |
20 virtual ~PrefValueMap(); | 21 virtual ~PrefValueMap(); |
21 | 22 |
22 // Gets the value for |key| and stores it in |value|. Ownership remains with | 23 // Gets the value for |key| and stores it in |value|. Ownership remains with |
23 // the map. Returns true if a value is present. If not, |value| is not | 24 // the map. Returns true if a value is present. If not, |value| is not |
24 // touched. | 25 // touched. |
25 bool GetValue(const std::string& key, Value** value) const; | 26 bool GetValue(const std::string& key, Value** value) const; |
26 | 27 |
27 // Sets a new |value| for |key|. Takes ownership of |value|, which must be | 28 // Sets a new |value| for |key|. Takes ownership of |value|, which must be |
28 // non-NULL. Returns true if the value changed. | 29 // non-NULL. Returns true if the value changed. |
29 bool SetValue(const std::string& key, Value* value); | 30 bool SetValue(const std::string& key, Value* value); |
30 | 31 |
31 // Removes the value for |key| from the map. Returns true if a value was | 32 // Removes the value for |key| from the map. Returns true if a value was |
32 // removed. | 33 // removed. |
33 bool RemoveValue(const std::string& key); | 34 bool RemoveValue(const std::string& key); |
34 | 35 |
35 // Clears the map. | 36 // Clears the map. |
36 void Clear(); | 37 void Clear(); |
37 | 38 |
| 39 // Gets a boolean value for |key| and stores it in |value|. Returns true if |
| 40 // the value was found and of the proper type. |
| 41 bool GetBoolean(const std::string& key, bool* value) const; |
| 42 |
| 43 // Gets a string value for |key| and stores it in |value|. Returns true if |
| 44 // the value was found and of the proper type. |
| 45 bool GetString(const std::string& key, std::string* value) const; |
| 46 |
| 47 // Sets the value for |key| to the string |value|. |
| 48 void SetString(const std::string& key, const std::string& value); |
| 49 |
| 50 // Compares this value map against |other| and stores all key names that have |
| 51 // different values in |differing_keys|. This includes keys that are present |
| 52 // only in one of the maps. |
| 53 void GetDifferingKeys(const PrefValueMap* other, |
| 54 std::vector<std::string>* differing_keys) const; |
| 55 |
38 private: | 56 private: |
39 typedef std::map<std::string, Value*> Map; | 57 typedef std::map<std::string, Value*> Map; |
40 | 58 |
41 Map prefs_; | 59 Map prefs_; |
42 | 60 |
43 DISALLOW_COPY_AND_ASSIGN(PrefValueMap); | 61 DISALLOW_COPY_AND_ASSIGN(PrefValueMap); |
44 }; | 62 }; |
45 | 63 |
46 #endif // CHROME_BROWSER_PREFS_PREF_VALUE_MAP_H_ | 64 #endif // CHROME_BROWSER_PREFS_PREF_VALUE_MAP_H_ |
OLD | NEW |