Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(121)

Unified Diff: chrome/browser/extensions/updater/extension_updater_unittest.cc

Issue 12211029: Sanity tweaks to the extension blacklist: check all extensions at once on (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: mpcomplete Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/updater/extension_updater_unittest.cc
diff --git a/chrome/browser/extensions/updater/extension_updater_unittest.cc b/chrome/browser/extensions/updater/extension_updater_unittest.cc
index 98b505977955a37d7e41669eec867475f219e22a..e774374ed8aaa6447690c62fbf2b0a7d98393fc2 100644
--- a/chrome/browser/extensions/updater/extension_updater_unittest.cc
+++ b/chrome/browser/extensions/updater/extension_updater_unittest.cc
@@ -1217,7 +1217,7 @@ class ExtensionUpdaterTest : public testing::Test {
// Fake install notice. This should start the second installation,
// which will be checked below.
- fake_crx1->NotifyCrxInstallComplete(NULL);
+ fake_crx1->NotifyCrxInstallComplete(false);
EXPECT_TRUE(updater.crx_install_is_running_);
}
@@ -1231,7 +1231,7 @@ class ExtensionUpdaterTest : public testing::Test {
if (updates_start_running) {
EXPECT_TRUE(updater.crx_install_is_running_);
- fake_crx2->NotifyCrxInstallComplete(NULL);
+ fake_crx2->NotifyCrxInstallComplete(false);
}
EXPECT_FALSE(updater.crx_install_is_running_);
}

Powered by Google App Engine
This is Rietveld 408576698