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 | |
12 TrackedSplitPreference::TrackedSplitPreference( | |
13 const std::string& pref_path, | |
14 size_t reporting_id, | |
15 size_t reporting_ids_count, | |
16 PrefHashFilter::EnforcementLevel enforcement_level) | |
17 : pref_path_(pref_path), | |
18 helper_(pref_path, reporting_id, reporting_ids_count, enforcement_level) { | |
19 } | |
20 | |
21 void TrackedSplitPreference::OnValueChanged( | |
22 const base::Value* value, | |
23 PrefHashStore* pref_hash_store) const { | |
24 const base::DictionaryValue* dict_value = NULL; | |
25 if (value && !value->GetAsDictionary(&dict_value)) { | |
26 NOTREACHED(); | |
27 return; | |
28 } | |
29 pref_hash_store->StoreSplitHash(pref_path_, dict_value); | |
erikwright (departed)
2014/01/21 18:44:45
pref_hash_store.h
gab
2014/01/21 20:51:42
Done.
| |
30 } | |
31 | |
32 void TrackedSplitPreference::EnforceAndReport( | |
33 PrefHashStore* pref_hash_store, | |
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 |