summaryrefslogtreecommitdiffstats
path: root/chrome/browser/first_run
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/first_run')
-rw-r--r--chrome/browser/first_run/first_run.cc3
-rw-r--r--chrome/browser/first_run/first_run_posix.cc3
-rw-r--r--chrome/browser/first_run/first_run_win.cc2
3 files changed, 3 insertions, 5 deletions
diff --git a/chrome/browser/first_run/first_run.cc b/chrome/browser/first_run/first_run.cc
index 2bf8688..53a8db5 100644
--- a/chrome/browser/first_run/first_run.cc
+++ b/chrome/browser/first_run/first_run.cc
@@ -212,8 +212,7 @@ void ImportFromFile(Profile* profile, const CommandLine& cmdline) {
first_run::internal::ImportEndedObserver observer;
importer_host->SetObserver(&observer);
importer_host->StartImportSettings(
- source_profile, profile, importer::FAVORITES, new ProfileWriter(profile),
- true);
+ source_profile, profile, importer::FAVORITES, new ProfileWriter(profile));
// If the import process has not errored out, block on it.
if (!observer.ended()) {
observer.set_should_quit_message_loop();
diff --git a/chrome/browser/first_run/first_run_posix.cc b/chrome/browser/first_run/first_run_posix.cc
index eb9becc..596cc64 100644
--- a/chrome/browser/first_run/first_run_posix.cc
+++ b/chrome/browser/first_run/first_run_posix.cc
@@ -63,8 +63,7 @@ bool ImportSettings(Profile* profile,
importer_host->StartImportSettings(source_profile,
profile,
items_to_import,
- new ProfileWriter(profile),
- true);
+ new ProfileWriter(profile));
// If the import process has not errored out, block on it.
if (!observer.ended()) {
observer.set_should_quit_message_loop();
diff --git a/chrome/browser/first_run/first_run_win.cc b/chrome/browser/first_run/first_run_win.cc
index 7628e25..8a5a9a5 100644
--- a/chrome/browser/first_run/first_run_win.cc
+++ b/chrome/browser/first_run/first_run_win.cc
@@ -310,7 +310,7 @@ int ImportFromBrowser(Profile* profile,
importer_host->SetObserver(&observer);
importer_host->StartImportSettings(
importer_list->GetSourceProfileForImporterType(importer_type), profile,
- static_cast<uint16>(items_to_import), new ProfileWriter(profile), true);
+ static_cast<uint16>(items_to_import), new ProfileWriter(profile));
// If the import process has not errored out, block on it.
if (!observer.ended()) {
observer.set_should_quit_message_loop();