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

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

Issue 8417012: Refactor loading out of ExtensionService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: finally Created 9 years, 2 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/extension_updater_unittest.cc
diff --git a/chrome/browser/extensions/extension_updater_unittest.cc b/chrome/browser/extensions/extension_updater_unittest.cc
index 6743dfb353deac09c3152afae3fdb014dca48413..4e1908a85c3b7b675474574b7d2aadd474104277 100644
--- a/chrome/browser/extensions/extension_updater_unittest.cc
+++ b/chrome/browser/extensions/extension_updater_unittest.cc
@@ -817,9 +817,9 @@ class ExtensionUpdaterTest : public testing::Test {
profile.GetExtensionService()->set_show_extensions_prompts(false);
scoped_refptr<CrxInstaller> fake_crx1(
- profile.GetExtensionService()->MakeCrxInstaller(NULL));
+ CrxInstaller::Create(profile.GetExtensionService(), NULL));
scoped_refptr<CrxInstaller> fake_crx2(
- profile.GetExtensionService()->MakeCrxInstaller(NULL));
+ CrxInstaller::Create(profile.GetExtensionService(), NULL));
if (updates_start_running) {
// Add fake CrxInstaller to be returned by service.UpdateExtension().
« no previous file with comments | « chrome/browser/extensions/extension_service_unittest.cc ('k') | chrome/browser/extensions/installed_loader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698