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

Unified Diff: components/user_prefs/tracked/tracked_split_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_split_preference.h
diff --git a/components/user_prefs/tracked/tracked_split_preference.h b/components/user_prefs/tracked/tracked_split_preference.h
index 359c8e1f5709c619c66a0dc4556fb037ed237a6c..956342b0af4c15b679acce0bf68d28dde5386b3f 100644
--- a/components/user_prefs/tracked/tracked_split_preference.h
+++ b/components/user_prefs/tracked/tracked_split_preference.h
@@ -15,7 +15,11 @@
#include "components/user_prefs/tracked/tracked_preference.h"
#include "components/user_prefs/tracked/tracked_preference_helper.h"
+namespace prefs {
+namespace mojom {
class TrackedPreferenceValidationDelegate;
+}
+}
// A TrackedSplitPreference must be tracking a dictionary pref. Each top-level
// entry in its dictionary is tracked and enforced independently. An optional
@@ -25,12 +29,13 @@ class TrackedPreferenceValidationDelegate;
class TrackedSplitPreference : public TrackedPreference {
public:
// Constructs a TrackedSplitPreference. |pref_path| must be a dictionary pref.
- TrackedSplitPreference(const std::string& pref_path,
- size_t reporting_id,
- size_t reporting_ids_count,
- PrefHashFilter::EnforcementLevel enforcement_level,
- PrefHashFilter::ValueType value_type,
- TrackedPreferenceValidationDelegate* delegate);
+ TrackedSplitPreference(
+ 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;
@@ -44,7 +49,7 @@ class TrackedSplitPreference : public TrackedPreference {
private:
const std::string pref_path_;
const TrackedPreferenceHelper helper_;
- TrackedPreferenceValidationDelegate* delegate_;
+ prefs::mojom::TrackedPreferenceValidationDelegate* delegate_;
DISALLOW_COPY_AND_ASSIGN(TrackedSplitPreference);
};

Powered by Google App Engine
This is Rietveld 408576698