| 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().
|
|
|