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

Unified Diff: chrome/browser/automation/testing_automation_provider.cc

Issue 10683003: Moved CrxInstaller and CrxInstallerError into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 6 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/automation/testing_automation_provider.cc
diff --git a/chrome/browser/automation/testing_automation_provider.cc b/chrome/browser/automation/testing_automation_provider.cc
index 2f57098dc865a2a886a2ac1d5126f014eeb87c82..966aa7f1920328048e5d991f01e2416e60a68079 100644
--- a/chrome/browser/automation/testing_automation_provider.cc
+++ b/chrome/browser/automation/testing_automation_provider.cc
@@ -4053,8 +4053,8 @@ void TestingAutomationProvider::InstallExtension(
if (extension_path.MatchesExtension(FILE_PATH_LITERAL(".crx"))) {
ExtensionInstallPrompt* client =
(with_ui ? new ExtensionInstallPrompt(browser) : NULL);
- scoped_refptr<CrxInstaller> installer(
- CrxInstaller::Create(service, client));
+ scoped_refptr<extensions::CrxInstaller> installer(
+ extensions::CrxInstaller::Create(service, client));
if (!with_ui)
installer->set_allow_silent_install(true);
installer->set_install_cause(extension_misc::INSTALL_CAUSE_AUTOMATION);

Powered by Google App Engine
This is Rietveld 408576698