| Index: components/user_prefs/tracked/dictionary_hash_store_contents.cc
|
| diff --git a/components/user_prefs/tracked/dictionary_hash_store_contents.cc b/components/user_prefs/tracked/dictionary_hash_store_contents.cc
|
| index 1ee5770bc050b6d13e3c5a89d098af1b3e735a1f..ec2ac24c52c72cd28d81827471d5a18da03648a3 100644
|
| --- a/components/user_prefs/tracked/dictionary_hash_store_contents.cc
|
| +++ b/components/user_prefs/tracked/dictionary_hash_store_contents.cc
|
| @@ -28,6 +28,10 @@ void DictionaryHashStoreContents::RegisterProfilePrefs(
|
| registry->RegisterStringPref(kSuperMACPref, std::string());
|
| }
|
|
|
| +HashStoreContentsType DictionaryHashStoreContents::GetType() const {
|
| + return HashStoreContentsType::DICTIONARY_HASH_STORE_CONTENTS;
|
| +}
|
| +
|
| void DictionaryHashStoreContents::Reset() {
|
| storage_->Remove(kPreferenceMACs, NULL);
|
| }
|
| @@ -115,4 +119,4 @@ base::DictionaryValue* DictionaryHashStoreContents::GetMutableContents(
|
| storage_->Set(kPreferenceMACs, macs_dict);
|
| }
|
| return macs_dict;
|
| -}
|
| +}
|
|
|