OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "components/user_prefs/tracked/mock_validation_delegate.h" | 5 #include "components/user_prefs/tracked/mock_validation_delegate.h" |
6 | 6 |
7 MockValidationDelegate::MockValidationDelegate() { | 7 MockValidationDelegate::MockValidationDelegate() { |
8 } | 8 } |
9 | 9 |
10 MockValidationDelegate::~MockValidationDelegate() { | 10 MockValidationDelegate::~MockValidationDelegate() { |
11 } | 11 } |
12 | 12 |
13 size_t MockValidationDelegate::CountValidationsOfState( | 13 size_t MockValidationDelegate::CountValidationsOfState( |
14 PrefHashStoreTransaction::ValueState value_state) const { | 14 PrefHashStoreTransaction::ValueState value_state) const { |
15 size_t count = 0; | 15 size_t count = 0; |
16 for (size_t i = 0; i < validations_.size(); ++i) { | 16 for (size_t i = 0; i < validations_.size(); ++i) { |
17 if (validations_[i].value_state == value_state) | 17 if (validations_[i].value_state == value_state) |
18 ++count; | 18 ++count; |
19 } | 19 } |
20 return count; | 20 return count; |
21 } | 21 } |
22 | 22 |
| 23 size_t MockValidationDelegate::CountExternalValidationsOfState( |
| 24 PrefHashStoreTransaction::ValueState value_state) const { |
| 25 size_t count = 0; |
| 26 for (size_t i = 0; i < validations_.size(); ++i) { |
| 27 if (validations_[i].external_validation_value_state == value_state) |
| 28 ++count; |
| 29 } |
| 30 return count; |
| 31 } |
| 32 |
23 const MockValidationDelegate::ValidationEvent* | 33 const MockValidationDelegate::ValidationEvent* |
24 MockValidationDelegate::GetEventForPath(const std::string& pref_path) const { | 34 MockValidationDelegate::GetEventForPath(const std::string& pref_path) const { |
25 for (size_t i = 0; i < validations_.size(); ++i) { | 35 for (size_t i = 0; i < validations_.size(); ++i) { |
26 if (validations_[i].pref_path == pref_path) | 36 if (validations_[i].pref_path == pref_path) |
27 return &validations_[i]; | 37 return &validations_[i]; |
28 } | 38 } |
29 return NULL; | 39 return NULL; |
30 } | 40 } |
31 | 41 |
32 void MockValidationDelegate::OnAtomicPreferenceValidation( | 42 void MockValidationDelegate::OnAtomicPreferenceValidation( |
33 const std::string& pref_path, | 43 const std::string& pref_path, |
34 const base::Value* value, | 44 const base::Value* value, |
35 PrefHashStoreTransaction::ValueState value_state, | 45 PrefHashStoreTransaction::ValueState value_state, |
| 46 PrefHashStoreTransaction::ValueState external_validation_value_state, |
36 bool is_personal) { | 47 bool is_personal) { |
37 RecordValidation(pref_path, value_state, is_personal, | 48 RecordValidation(pref_path, value_state, external_validation_value_state, |
38 PrefHashFilter::TRACKING_STRATEGY_ATOMIC); | 49 is_personal, PrefHashFilter::TRACKING_STRATEGY_ATOMIC); |
39 } | 50 } |
40 | 51 |
41 void MockValidationDelegate::OnSplitPreferenceValidation( | 52 void MockValidationDelegate::OnSplitPreferenceValidation( |
42 const std::string& pref_path, | 53 const std::string& pref_path, |
43 const base::DictionaryValue* dict_value, | 54 const base::DictionaryValue* dict_value, |
44 const std::vector<std::string>& invalid_keys, | 55 const std::vector<std::string>& invalid_keys, |
| 56 const std::vector<std::string>& external_validation_invalid_keys, |
45 PrefHashStoreTransaction::ValueState value_state, | 57 PrefHashStoreTransaction::ValueState value_state, |
| 58 PrefHashStoreTransaction::ValueState external_validation_value_state, |
46 bool is_personal) { | 59 bool is_personal) { |
47 RecordValidation(pref_path, value_state, is_personal, | 60 RecordValidation(pref_path, value_state, external_validation_value_state, |
48 PrefHashFilter::TRACKING_STRATEGY_SPLIT); | 61 is_personal, PrefHashFilter::TRACKING_STRATEGY_SPLIT); |
49 } | 62 } |
50 | 63 |
51 void MockValidationDelegate::RecordValidation( | 64 void MockValidationDelegate::RecordValidation( |
52 const std::string& pref_path, | 65 const std::string& pref_path, |
53 PrefHashStoreTransaction::ValueState value_state, | 66 PrefHashStoreTransaction::ValueState value_state, |
| 67 PrefHashStoreTransaction::ValueState external_validation_value_state, |
54 bool is_personal, | 68 bool is_personal, |
55 PrefHashFilter::PrefTrackingStrategy strategy) { | 69 PrefHashFilter::PrefTrackingStrategy strategy) { |
56 validations_.push_back( | 70 validations_.push_back(ValidationEvent(pref_path, value_state, |
57 ValidationEvent(pref_path, value_state, is_personal, strategy)); | 71 external_validation_value_state, |
| 72 is_personal, strategy)); |
58 } | 73 } |
OLD | NEW |