Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(793)

Unified Diff: components/user_prefs/tracked/mock_validation_delegate.h

Issue 2782803002: Move tracked prefs into services/preferences/tracked. (Closed)
Patch Set: rebase Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/user_prefs/tracked/mock_validation_delegate.h
diff --git a/components/user_prefs/tracked/mock_validation_delegate.h b/components/user_prefs/tracked/mock_validation_delegate.h
deleted file mode 100644
index 58a35e821ade75e0fcf619b64dba3b3c2bb3c6c3..0000000000000000000000000000000000000000
--- a/components/user_prefs/tracked/mock_validation_delegate.h
+++ /dev/null
@@ -1,116 +0,0 @@
-// 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 COMPONENTS_USER_PREFS_TRACKED_MOCK_VALIDATION_DELEGATE_H_
-#define COMPONENTS_USER_PREFS_TRACKED_MOCK_VALIDATION_DELEGATE_H_
-
-#include <stddef.h>
-
-#include <string>
-#include <vector>
-
-#include "base/compiler_specific.h"
-#include "base/macros.h"
-#include "components/user_prefs/tracked/pref_hash_filter.h"
-#include "components/user_prefs/tracked/pref_hash_store_transaction.h"
-#include "services/preferences/public/interfaces/tracked_preference_validation_delegate.mojom.h"
-
-class MockValidationDelegate;
-
-// A mock tracked preference validation delegate for use by tests.
-class MockValidationDelegateRecord
- : public base::RefCounted<MockValidationDelegateRecord> {
- public:
- struct ValidationEvent {
- ValidationEvent(
- const std::string& path,
- PrefHashStoreTransaction::ValueState state,
- PrefHashStoreTransaction::ValueState external_validation_state,
- bool is_personal,
- PrefHashFilter::PrefTrackingStrategy tracking_strategy)
- : pref_path(path),
- value_state(state),
- external_validation_value_state(external_validation_state),
- is_personal(is_personal),
- strategy(tracking_strategy) {}
-
- std::string pref_path;
- PrefHashStoreTransaction::ValueState value_state;
- PrefHashStoreTransaction::ValueState external_validation_value_state;
- bool is_personal;
- PrefHashFilter::PrefTrackingStrategy strategy;
- };
-
- MockValidationDelegateRecord();
-
- // 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 number of external validations of a given value state.
- size_t CountExternalValidationsOfState(
- PrefHashStoreTransaction::ValueState value_state) const;
-
- // Returns the event for the preference with a given path.
- const ValidationEvent* GetEventForPath(const std::string& pref_path) const;
-
- private:
- friend class MockValidationDelegate;
- friend class base::RefCounted<MockValidationDelegateRecord>;
-
- ~MockValidationDelegateRecord();
-
- // Adds a new validation event.
- void RecordValidation(
- const std::string& pref_path,
- PrefHashStoreTransaction::ValueState value_state,
- PrefHashStoreTransaction::ValueState external_validation_value_state,
- bool is_personal,
- PrefHashFilter::PrefTrackingStrategy strategy);
-
- std::vector<ValidationEvent> validations_;
-
- DISALLOW_COPY_AND_ASSIGN(MockValidationDelegateRecord);
-};
-
-class MockValidationDelegate
- : public prefs::mojom::TrackedPreferenceValidationDelegate {
- public:
- explicit MockValidationDelegate(
- scoped_refptr<MockValidationDelegateRecord> record);
- ~MockValidationDelegate() override;
-
- // TrackedPreferenceValidationDelegate implementation.
- void OnAtomicPreferenceValidation(
- const std::string& pref_path,
- std::unique_ptr<base::Value> value,
- PrefHashStoreTransaction::ValueState value_state,
- PrefHashStoreTransaction::ValueState external_validation_value_state,
- bool is_personal) override;
- void OnSplitPreferenceValidation(
- const std::string& pref_path,
- const std::vector<std::string>& invalid_keys,
- const std::vector<std::string>& external_validation_invalid_keys,
- PrefHashStoreTransaction::ValueState value_state,
- PrefHashStoreTransaction::ValueState external_validation_value_state,
- bool is_personal) override;
-
- private:
- // Adds a new validation event.
- void RecordValidation(
- const std::string& pref_path,
- PrefHashStoreTransaction::ValueState value_state,
- PrefHashStoreTransaction::ValueState external_validation_value_state,
- bool is_personal,
- PrefHashFilter::PrefTrackingStrategy strategy);
-
- scoped_refptr<MockValidationDelegateRecord> record_;
-
- DISALLOW_COPY_AND_ASSIGN(MockValidationDelegate);
-};
-
-#endif // COMPONENTS_USER_PREFS_TRACKED_MOCK_VALIDATION_DELEGATE_H_
« no previous file with comments | « components/user_prefs/tracked/interceptable_pref_filter.cc ('k') | components/user_prefs/tracked/mock_validation_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698