| Index: base/prefs/pref_value_map.cc
|
| diff --git a/base/prefs/pref_value_map.cc b/base/prefs/pref_value_map.cc
|
| index eeda272217a139988658d0c9317f0f0bdf74c16c..7d3dbe7761a66ba40cad741782363dfd97c43182 100644
|
| --- a/base/prefs/pref_value_map.cc
|
| +++ b/base/prefs/pref_value_map.cc
|
| @@ -120,6 +120,10 @@ void PrefValueMap::SetInteger(const std::string& key, const int value) {
|
| SetValue(key, new base::FundamentalValue(value));
|
| }
|
|
|
| +void PrefValueMap::SetDouble(const std::string& key, const double value) {
|
| + SetValue(key, new base::FundamentalValue(value));
|
| +}
|
| +
|
| void PrefValueMap::GetDifferingKeys(
|
| const PrefValueMap* other,
|
| std::vector<std::string>* differing_keys) const {
|
|
|