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

Unified Diff: chrome/browser/prefs/session_startup_pref.h

Issue 2639153002: Make extensions DSE persistent in browser prefs (Reland) (Closed)
Patch Set: Rebased and updated after review, use new keyword conflicts resolution Created 3 years, 10 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: chrome/browser/prefs/session_startup_pref.h
diff --git a/chrome/browser/prefs/session_startup_pref.h b/chrome/browser/prefs/session_startup_pref.h
index b13f76d10916699789eb5cd8fdfd21d6e399bad3..81241480c904344636d0ea6efbab734d51554d0f 100644
--- a/chrome/browser/prefs/session_startup_pref.h
+++ b/chrome/browser/prefs/session_startup_pref.h
@@ -36,10 +36,12 @@ struct SessionStartupPref {
// line up. These are the values registered in prefs.
// The values are also recorded in Settings.StartupPageLoadSettings histogram,
// so make sure to update histograms.xml if you change these.
- static const int kPrefValueLast = 1;
- static const int kPrefValueURLs = 4;
- static const int kPrefValueNewTab = 5;
- static const int kPrefValueMax = 6;
+ enum PrefValue {
+ kPrefValueLast = 1,
+ kPrefValueURLs = 4,
+ kPrefValueNewTab = 5,
+ kPrefValueMax = 6,
+ };
static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);

Powered by Google App Engine
This is Rietveld 408576698