From 76a044f0c255dc8d351b00a9711b9e9d62e9045f Mon Sep 17 00:00:00 2001 From: "gab@chromium.org" Date: Wed, 24 Apr 2013 19:54:37 +0000 Subject: 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 --- chrome/browser/importer/firefox_importer_unittest.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'chrome/browser/importer/firefox_importer_unittest.cc') diff --git a/chrome/browser/importer/firefox_importer_unittest.cc b/chrome/browser/importer/firefox_importer_unittest.cc index 8c8b9fa..b021871 100644 --- a/chrome/browser/importer/firefox_importer_unittest.cc +++ b/chrome/browser/importer/firefox_importer_unittest.cc @@ -428,7 +428,7 @@ class FirefoxProfileImporterTest : public ImporterTest { items = items | importer::SEARCH_ENGINES; loop->PostTask(FROM_HERE, base::Bind( &ImporterHost::StartImportSettings, host.get(), source_profile, - profile_.get(), items, make_scoped_refptr(writer), true)); + profile_.get(), items, make_scoped_refptr(writer))); loop->Run(); } @@ -473,8 +473,7 @@ TEST_F(FirefoxProfileImporterTest, MAYBE_IMPORTER(Firefox2Importer)) { profile_.get(), importer::HISTORY | importer::PASSWORDS | importer::FAVORITES | importer::SEARCH_ENGINES, - make_scoped_refptr(observer), - true)); + make_scoped_refptr(observer))); loop->Run(); } -- cgit v1.1