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

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

Issue 2719833002: Convert TrackedPreferenceValidationDelegate into a mojo interface. (Closed)
Patch Set: 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/tracked_atomic_preference.h
diff --git a/components/user_prefs/tracked/tracked_atomic_preference.h b/components/user_prefs/tracked/tracked_atomic_preference.h
index e279af859474b44baae94f4bca49b7076b26c2bd..ec8009de7f064f357c35266e71cfd364b96616cd 100644
--- a/components/user_prefs/tracked/tracked_atomic_preference.h
+++ b/components/user_prefs/tracked/tracked_atomic_preference.h
@@ -15,19 +15,24 @@
#include "components/user_prefs/tracked/tracked_preference.h"
#include "components/user_prefs/tracked/tracked_preference_helper.h"
+namespace prefs {
+namespace mojom {
class TrackedPreferenceValidationDelegate;
+}
+}
// A TrackedAtomicPreference is tracked as a whole. A hash is stored for its
// entire value and it is entirely reset on mismatch. An optional delegate is
// notified of the status of the preference during enforcement.
class TrackedAtomicPreference : public TrackedPreference {
public:
- TrackedAtomicPreference(const std::string& pref_path,
- size_t reporting_id,
- size_t reporting_ids_count,
- PrefHashFilter::EnforcementLevel enforcement_level,
- PrefHashFilter::ValueType value_type,
- TrackedPreferenceValidationDelegate* delegate);
+ TrackedAtomicPreference(
+ const std::string& pref_path,
+ size_t reporting_id,
+ size_t reporting_ids_count,
+ PrefHashFilter::EnforcementLevel enforcement_level,
+ PrefHashFilter::ValueType value_type,
+ prefs::mojom::TrackedPreferenceValidationDelegate* delegate);
// TrackedPreference implementation.
TrackedPreferenceType GetType() const override;
@@ -41,7 +46,7 @@ class TrackedAtomicPreference : public TrackedPreference {
private:
const std::string pref_path_;
const TrackedPreferenceHelper helper_;
- TrackedPreferenceValidationDelegate* delegate_;
+ prefs::mojom::TrackedPreferenceValidationDelegate* delegate_;
DISALLOW_COPY_AND_ASSIGN(TrackedAtomicPreference);
};
« no previous file with comments | « components/user_prefs/tracked/pref_hash_filter_unittest.cc ('k') | components/user_prefs/tracked/tracked_atomic_preference.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698