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

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

Issue 8725013: Improve ExtensionBrowserTest. Part of moving ExtensionService to use ExtensionSet. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix tests Created 9 years, 1 month 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
« no previous file with comments | « chrome/browser/extensions/extension_management_browsertest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_updater_unittest.cc
diff --git a/chrome/browser/extensions/extension_updater_unittest.cc b/chrome/browser/extensions/extension_updater_unittest.cc
index 7b642534bf1e3b478baa9f3afa73c4f20768f9bf..e8f3c526c7355cb91cd82b77278c643a962f04ed 100644
--- a/chrome/browser/extensions/extension_updater_unittest.cc
+++ b/chrome/browser/extensions/extension_updater_unittest.cc
@@ -870,7 +870,7 @@ class ExtensionUpdaterTest : public testing::Test {
// Fake install notice. This should start the second installation,
// which will be checked below.
- fake_crx1->NotifyCrxInstallComplete();
+ fake_crx1->NotifyCrxInstallComplete(NULL);
EXPECT_TRUE(updater.crx_install_is_running_);
}
@@ -884,7 +884,7 @@ class ExtensionUpdaterTest : public testing::Test {
if (updates_start_running) {
EXPECT_TRUE(updater.crx_install_is_running_);
- fake_crx2->NotifyCrxInstallComplete();
+ fake_crx2->NotifyCrxInstallComplete(NULL);
}
EXPECT_FALSE(updater.crx_install_is_running_);
}
« no previous file with comments | « chrome/browser/extensions/extension_management_browsertest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698