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

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

Issue 2752533002: Convert PrefHashFilter enums to enum class. (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/pref_hash_filter.h
diff --git a/components/user_prefs/tracked/pref_hash_filter.h b/components/user_prefs/tracked/pref_hash_filter.h
index 87c3f036ab12e359351fcef78cfd425fcbaf7e83..d7addb9ee18709df9b28c613d47575c087ef5a68 100644
--- a/components/user_prefs/tracked/pref_hash_filter.h
+++ b/components/user_prefs/tracked/pref_hash_filter.h
@@ -45,21 +45,21 @@ class PrefRegistrySyncable;
// are changed.
class PrefHashFilter : public InterceptablePrefFilter {
public:
- enum EnforcementLevel { NO_ENFORCEMENT, ENFORCE_ON_LOAD };
+ enum class EnforcementLevel { NO_ENFORCEMENT, ENFORCE_ON_LOAD };
- enum PrefTrackingStrategy {
+ enum class PrefTrackingStrategy {
// Atomic preferences are tracked as a whole.
- TRACKING_STRATEGY_ATOMIC,
+ ATOMIC,
// Split preferences are dictionaries for which each top-level entry is
// tracked independently. Note: preferences using this strategy must be kept
// in sync with TrackedSplitPreferences in histograms.xml.
- TRACKING_STRATEGY_SPLIT,
+ SPLIT,
};
- enum ValueType {
- VALUE_IMPERSONAL,
+ enum class ValueType {
+ IMPERSONAL,
// The preference value may contain personal information.
- VALUE_PERSONAL,
+ PERSONAL,
};
struct TrackedPreferenceMetadata {
« no previous file with comments | « components/user_prefs/tracked/mock_validation_delegate.cc ('k') | components/user_prefs/tracked/pref_hash_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698