summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/browser_init.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ui/browser_init.h')
-rw-r--r--chrome/browser/ui/browser_init.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/browser/ui/browser_init.h b/chrome/browser/ui/browser_init.h
index 9e2ebfc..7d5a332 100644
--- a/chrome/browser/ui/browser_init.h
+++ b/chrome/browser/ui/browser_init.h
@@ -18,6 +18,7 @@
class Browser;
class CommandLine;
class GURL;
+class PrefService;
class TabContentsWrapper;
// class containing helpers for BrowserMain to spin up a new instance and
@@ -62,6 +63,8 @@ class BrowserInit {
// Returns true if the browser is coming up.
static bool InProcessStartup();
+ static void RegisterUserPrefs(PrefService* prefs);
+
// Launches a browser window associated with |profile|. |command_line| should
// be the command line passed to this process. |cur_dir| can be empty, which
// implies that the directory of the executable should be used.
@@ -224,6 +227,9 @@ class BrowserInit {
// previously instructed not to do so) and warns the user if it is not.
void CheckDefaultBrowser(Profile* profile);
+ // Checks whether Chrome was auto-started at login.
+ void CheckIfAutoLaunched(Profile* profile);
+
const FilePath cur_dir_;
const CommandLine& command_line_;
Profile* profile_;