diff options
Diffstat (limited to 'chrome/browser/prefs/session_startup_pref.h')
-rw-r--r-- | chrome/browser/prefs/session_startup_pref.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/prefs/session_startup_pref.h b/chrome/browser/prefs/session_startup_pref.h index d7cfaac..c536da5 100644 --- a/chrome/browser/prefs/session_startup_pref.h +++ b/chrome/browser/prefs/session_startup_pref.h @@ -41,9 +41,11 @@ struct SessionStartupPref { static bool TypeIsManaged(PrefService* prefs); static bool URLsAreManaged(PrefService* prefs); - SessionStartupPref() : type(DEFAULT) {} + SessionStartupPref(); - explicit SessionStartupPref(Type type) : type(type) {} + explicit SessionStartupPref(Type type); + + ~SessionStartupPref(); // What to do on startup. Type type; |