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 c536da5cd5f0e335bc6957f45b63a3709d0b12bc..c8138a484e8acd50c7334f1e0f1798e45ad5ad4f 100644 |
--- a/chrome/browser/prefs/session_startup_pref.h |
+++ b/chrome/browser/prefs/session_startup_pref.h |
@@ -17,9 +17,12 @@ class Profile; |
// StartupPref is stored in the preferences for a particular profile. |
struct SessionStartupPref { |
enum Type { |
- // Indicates the user doesn't want to restore a previous session. |
+ // Indicates the user wants to open the New Tab page. |
DEFAULT, |
+ // Deprecated. See comment in session_startup_pref.cc. |
+ HOMEPAGE, |
+ |
// Indicates the user wants to restore the last session. |
LAST, |
@@ -41,8 +44,6 @@ struct SessionStartupPref { |
static bool TypeIsManaged(PrefService* prefs); |
static bool URLsAreManaged(PrefService* prefs); |
- SessionStartupPref(); |
- |
explicit SessionStartupPref(Type type); |
~SessionStartupPref(); |