diff options
author | gab@chromium.org <gab@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-24 19:54:37 +0000 |
---|---|---|
committer | gab@chromium.org <gab@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-24 19:54:37 +0000 |
commit | 76a044f0c255dc8d351b00a9711b9e9d62e9045f (patch) | |
tree | db41519a4429c5762d9bca6e24a7cc56f5786b14 /chrome/browser/first_run/first_run.cc | |
parent | 8374d9fd562dd1bbd89dc57c33da1fbb9bcd122e (diff) | |
download | chromium_src-76a044f0c255dc8d351b00a9711b9e9d62e9045f.zip chromium_src-76a044f0c255dc8d351b00a9711b9e9d62e9045f.tar.gz chromium_src-76a044f0c255dc8d351b00a9711b9e9d62e9045f.tar.bz2 |
Remove unused |first_run| parameter in ImporterHost::CheckForFirefoxLock() which results in a cascade of unused parameter removal.
This is a precursor CL to https://codereview.chromium.org/12670013/
TBR=ben@chromium.org
BUG=219419
Review URL: https://chromiumcodereview.appspot.com/14316007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@196209 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/first_run/first_run.cc')
-rw-r--r-- | chrome/browser/first_run/first_run.cc | 3 |
1 files changed, 1 insertions, 2 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(); |