Index: chrome/browser/prefs/mock_validation_observer.h |
diff --git a/chrome/browser/prefs/mock_validation_observer.h b/chrome/browser/prefs/mock_validation_observer.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..dc60f8afe63356ca9fbd3bc533a8ca31c36024fe |
--- /dev/null |
+++ b/chrome/browser/prefs/mock_validation_observer.h |
@@ -0,0 +1,86 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROME_BROWSER_PREFS_MOCK_VALIDATION_OBSERVER_H_ |
+#define CHROME_BROWSER_PREFS_MOCK_VALIDATION_OBSERVER_H_ |
+ |
+#include <string> |
+#include <vector> |
+ |
+#include "base/memory/ref_counted.h" |
+#include "chrome/browser/prefs/pref_hash_filter.h" |
+#include "chrome/browser/prefs/tracked/tracked_preference_validation_observer.h" |
+ |
+// A mock tracked preference validation observer for use by tests. |
+class MockValidationObserver : public TrackedPreferenceValidationObserver { |
+ public: |
+ // A container of observed validation events. |
+ class ValidationData : public base::RefCounted<ValidationData> { |
erikwright (departed)
2014/05/14 00:39:26
Personally I would just make this a regular class,
grt (UTC plus 2)
2014/05/14 18:57:22
If you don't mind, I'm inclined to leave this as-i
|
+ public: |
+ struct ValidationEvent { |
+ ValidationEvent(const std::string& path, |
+ PrefHashStoreTransaction::ValueState state, |
+ TrackedPreferenceHelper::ResetAction action, |
+ PrefHashFilter::PrefTrackingStrategy tracking_strategy) |
+ : pref_path(path), |
+ value_state(state), |
+ reset_action(action), |
+ strategy(tracking_strategy) {} |
+ |
+ std::string pref_path; |
erikwright (departed)
2014/05/14 00:39:26
#include pref_hash_store_transaction, tracked_pref
grt (UTC plus 2)
2014/05/14 18:57:22
Since these types are used here as a consequence o
erikwright (departed)
2014/05/14 21:24:06
My rule of thumb is that you don't need to include
grt (UTC plus 2)
2014/05/15 01:43:11
That makes sense, and is consistent with the name
erikwright (departed)
2014/05/15 13:49:02
You often won't end up with a compile error as the
|
+ PrefHashStoreTransaction::ValueState value_state; |
+ TrackedPreferenceHelper::ResetAction reset_action; |
+ PrefHashFilter::PrefTrackingStrategy strategy; |
+ }; |
+ ValidationData(); |
+ |
+ // Adds a new validation event. |
+ void RecordValidation(const std::string& pref_path, |
+ PrefHashStoreTransaction::ValueState value_state, |
+ TrackedPreferenceHelper::ResetAction reset_action, |
+ PrefHashFilter::PrefTrackingStrategy strategy); |
+ |
+ // Returns the number of recorded validations. |
+ size_t recorded_validations_count() const { return validations_.size(); } |
+ |
+ // Returns the number of validations of a given value state. |
+ size_t CountValidationsOfState( |
+ PrefHashStoreTransaction::ValueState value_state) const; |
+ |
+ // Returns the event for the preference with a given path. |
+ const ValidationEvent* GetEventForPath(const std::string& pref_path) const; |
+ |
+ // Returns all recorded validation. |
+ void GetAllEvents(std::vector<ValidationEvent>* validations) const; |
+ |
+ private: |
+ friend class base::RefCounted<ValidationData>; |
+ ~ValidationData(); |
+ |
+ std::vector<ValidationEvent> validations_; |
+ DISALLOW_COPY_AND_ASSIGN(ValidationData); |
erikwright (departed)
2014/05/14 00:39:26
base/macros.h
grt (UTC plus 2)
2014/05/14 18:57:22
Done.
|
+ }; |
+ |
+ explicit MockValidationObserver( |
+ const scoped_refptr<ValidationData>& validation_data); |
+ virtual ~MockValidationObserver(); |
+ |
+ virtual void OnAtomicPreferenceValidation( |
+ const std::string& pref_path, |
erikwright (departed)
2014/05/14 00:39:26
// ValidationObserver implementation
grt (UTC plus 2)
2014/05/14 18:57:22
Done.
|
+ const base::Value* value, |
+ PrefHashStoreTransaction::ValueState value_state, |
+ TrackedPreferenceHelper::ResetAction reset_action) OVERRIDE; |
erikwright (departed)
2014/05/14 00:39:26
base/compiler_specific.h
grt (UTC plus 2)
2014/05/14 18:57:22
Done.
|
+ virtual void OnSplitPreferenceValidation( |
+ const std::string& pref_path, |
+ const base::DictionaryValue* dict_value, |
+ const std::vector<std::string>& invalid_keys, |
+ PrefHashStoreTransaction::ValueState value_state, |
+ TrackedPreferenceHelper::ResetAction reset_action) OVERRIDE; |
+ |
+ private: |
+ scoped_refptr<ValidationData> validation_data_; |
+ DISALLOW_COPY_AND_ASSIGN(MockValidationObserver); |
+}; |
+ |
+#endif // CHROME_BROWSER_PREFS_MOCK_VALIDATION_OBSERVER_H_ |