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

Unified Diff: chrome/browser/first_run/first_run.h

Issue 11636031: [Fixit Dec-2012] Refactor first_run, very few things should depend on whether the First Run senti... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: No first run import test on OS_CHROMEOS. Created 7 years, 12 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
« no previous file with comments | « chrome/browser/chrome_browser_main_win.cc ('k') | chrome/browser/first_run/first_run.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/first_run/first_run.h
diff --git a/chrome/browser/first_run/first_run.h b/chrome/browser/first_run/first_run.h
index 31524e34dd9e3843d816843f8b07363aa3fe124a..d289c957cba6b1cce635175bbc606fda87e32d6d 100644
--- a/chrome/browser/first_run/first_run.h
+++ b/chrome/browser/first_run/first_run.h
@@ -50,8 +50,8 @@ enum FirstRunBubbleOptions {
};
enum ProcessMasterPreferencesResult {
- SHOW_FIRST_RUN = 0, // Should show the first run flow.
- SKIP_FIRST_RUN, // Should skip the first run flow.
+ DO_FIRST_RUN_TASKS = 0, // Should do the first run tasks.
+ SKIP_FIRST_RUN_TASKS, // Should skip the first run tasks.
EULA_EXIT_NOW, // Should immediately exit due to EULA flow.
};
@@ -123,8 +123,8 @@ void AutoImport(Profile* profile,
ProcessSingleton* process_singleton);
// Does remaining first run tasks for |profile| and makes Chrome default browser
-// if |make_chrome_default|.
-void DoFirstRunTasks(Profile* profile, bool make_chrome_default);
+// if |make_chrome_default|. This can pop the first run consent dialog on linux.
+void DoPostImportTasks(Profile* profile, bool make_chrome_default);
// Imports bookmarks and/or browser items (depending on platform support)
// in this process. This function is paired with first_run::ImportSettings().
« no previous file with comments | « chrome/browser/chrome_browser_main_win.cc ('k') | chrome/browser/first_run/first_run.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698