Index: base/prefs/pref_value_map.h |
diff --git a/base/prefs/pref_value_map.h b/base/prefs/pref_value_map.h |
index 1d7912771967f64b09747e794facce2aa8fe907e..2db18ab2a187144ee834388afe550702c5d8c9b4 100644 |
--- a/base/prefs/pref_value_map.h |
+++ b/base/prefs/pref_value_map.h |
@@ -71,6 +71,9 @@ class BASE_PREFS_EXPORT PrefValueMap { |
// Sets the value for |key| to the int |value|. |
void SetInteger(const std::string& key, const int value); |
+ // Sets the value for |key| to the double |value|. |
+ void SetDouble(const std::string& key, const double value); |
+ |
// Compares this value map against |other| and stores all key names that have |
// different values in |differing_keys|. This includes keys that are present |
// only in one of the maps. |