| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 BASE_PREFS_PREF_VALUE_MAP_H_ | 5 #ifndef BASE_PREFS_PREF_VALUE_MAP_H_ |
| 6 #define BASE_PREFS_PREF_VALUE_MAP_H_ | 6 #define BASE_PREFS_PREF_VALUE_MAP_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 void GetDifferingKeys(const PrefValueMap* other, | 82 void GetDifferingKeys(const PrefValueMap* other, |
| 83 std::vector<std::string>* differing_keys) const; | 83 std::vector<std::string>* differing_keys) const; |
| 84 | 84 |
| 85 private: | 85 private: |
| 86 Map prefs_; | 86 Map prefs_; |
| 87 | 87 |
| 88 DISALLOW_COPY_AND_ASSIGN(PrefValueMap); | 88 DISALLOW_COPY_AND_ASSIGN(PrefValueMap); |
| 89 }; | 89 }; |
| 90 | 90 |
| 91 #endif // BASE_PREFS_PREF_VALUE_MAP_H_ | 91 #endif // BASE_PREFS_PREF_VALUE_MAP_H_ |
| OLD | NEW |