Chromium Code Reviews| Index: base/prefs/pref_filter.h |
| diff --git a/base/prefs/pref_filter.h b/base/prefs/pref_filter.h |
| index 1020029131ab3daaec1f3abbfa322781915d9abf..82a44c6ef9bb711174b24288013e42fb1143d004 100644 |
| --- a/base/prefs/pref_filter.h |
| +++ b/base/prefs/pref_filter.h |
| @@ -45,9 +45,11 @@ class BASE_PREFS_EXPORT PrefFilter { |
| virtual void FilterUpdate(const std::string& path) = 0; |
| // Receives notification when the pref store is about to serialize data |
| - // contained in |pref_store_contents| to a string. |
| + // contained in |pref_store_contents| to a string. Modifications to |
| + // |pref_store_contents| will be persisted to disk and also affect the |
| + // in-memory state. |
| virtual void FilterSerializeData( |
| - const base::DictionaryValue* pref_store_contents) = 0; |
|
robertshield
2014/06/17 03:47:24
this requires a corresponding change to Intercepti
|
| + base::DictionaryValue* pref_store_contents) = 0; |
| }; |
| #endif // BASE_PREFS_PREF_FILTER_H_ |