OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/prefs/tracked/tracked_split_preference.h" |
| 6 |
| 7 #include <vector> |
| 8 |
| 9 #include "base/logging.h" |
| 10 #include "base/values.h" |
| 11 #include "chrome/browser/prefs/pref_hash_store.h" |
| 12 |
| 13 TrackedSplitPreference::TrackedSplitPreference( |
| 14 const std::string& pref_path, |
| 15 size_t reporting_id, |
| 16 size_t reporting_ids_count, |
| 17 PrefHashFilter::EnforcementLevel enforcement_level, |
| 18 PrefHashStore* pref_hash_store) |
| 19 : pref_path_(pref_path), |
| 20 helper_(pref_path, reporting_id, reporting_ids_count, enforcement_level), |
| 21 pref_hash_store_(pref_hash_store) { |
| 22 } |
| 23 |
| 24 void TrackedSplitPreference::OnNewValue(const base::Value* value) const { |
| 25 const base::DictionaryValue* dict_value = NULL; |
| 26 if (value && !value->GetAsDictionary(&dict_value)) { |
| 27 NOTREACHED(); |
| 28 return; |
| 29 } |
| 30 pref_hash_store_->StoreSplitHash(pref_path_, dict_value); |
| 31 } |
| 32 |
| 33 void TrackedSplitPreference::EnforceAndReport( |
| 34 base::DictionaryValue* pref_store_contents) const { |
| 35 base::DictionaryValue* dict_value = NULL; |
| 36 if (!pref_store_contents->GetDictionary(pref_path_, &dict_value) && |
| 37 pref_store_contents->Get(pref_path_, NULL)) { |
| 38 // There should be a dictionary or nothing at |pref_path_|. |
| 39 NOTREACHED(); |
| 40 return; |
| 41 } |
| 42 |
| 43 std::vector<std::string> invalid_keys; |
| 44 PrefHashStore::ValueState value_state = |
| 45 pref_hash_store_->CheckSplitValue(pref_path_, dict_value, &invalid_keys); |
| 46 |
| 47 if (value_state == PrefHashStore::CHANGED) |
| 48 helper_.ReportSplitPreferenceChangedCount(invalid_keys.size()); |
| 49 |
| 50 helper_.ReportValidationResult(value_state); |
| 51 |
| 52 TrackedPreferenceHelper::ResetAction reset_action = |
| 53 helper_.GetAction(value_state); |
| 54 helper_.ReportAction(reset_action); |
| 55 |
| 56 if (reset_action == TrackedPreferenceHelper::DO_RESET) { |
| 57 if (value_state == PrefHashStore::CHANGED) { |
| 58 DCHECK(!invalid_keys.empty()); |
| 59 |
| 60 for (std::vector<std::string>::const_iterator it = |
| 61 invalid_keys.begin(); it != invalid_keys.end(); ++it) { |
| 62 dict_value->Remove(*it, NULL); |
| 63 } |
| 64 } else { |
| 65 pref_store_contents->RemovePath(pref_path_, NULL); |
| 66 } |
| 67 } |
| 68 |
| 69 if (value_state != PrefHashStore::UNCHANGED) { |
| 70 // Store the hash for the new value (whether it was reset or not). |
| 71 const base::DictionaryValue* new_dict_value = NULL; |
| 72 pref_store_contents->GetDictionary(pref_path_, &new_dict_value); |
| 73 pref_hash_store_->StoreSplitHash(pref_path_, new_dict_value); |
| 74 } |
| 75 } |
OLD | NEW |