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 001b33966a40a8427a5ef756b7bbebb58cab472f..86297414dd247624f86f3b468468114c276f80ea 100644 |
--- a/chrome/browser/first_run/first_run.h |
+++ b/chrome/browser/first_run/first_run.h |
@@ -76,9 +76,6 @@ struct MasterPrefs { |
// dumped into local_state. Also see related TODO in chrome_browser_main.cc. |
int ping_delay; |
- bool homepage_defined; |
- int do_import_items; |
- int dont_import_items; |
bool make_chrome_default_for_user; |
bool suppress_first_run_default_browser_prompt; |
bool welcome_page_on_os_upgrade_enabled; |
@@ -162,13 +159,10 @@ bool ShouldDoPersonalDataManagerFirstRun(); |
// Log a metric for the "FirstRun.SearchEngineBubble" histogram. |
void LogFirstRunMetric(FirstRunBubbleMetric metric); |
-// Automatically import history and home page (and search engine, if |
-// ShouldShowSearchEngineDialog is true). Also imports bookmarks from file if |
+// Automatically imports items requested by |profile|'s configuration (sum of |
+// policies and master prefs). Also imports bookmarks from file if |
// |import_bookmarks_path| is not empty. |
void AutoImport(Profile* profile, |
- bool homepage_defined, |
- int import_items, |
- int dont_import_items, |
const std::string& import_bookmarks_path); |
// Does remaining first run tasks. This can pop the first run consent dialog on |