Index: chrome/browser/download/download_crx_util.cc |
diff --git a/chrome/browser/download/download_crx_util.cc b/chrome/browser/download/download_crx_util.cc |
index 1fde0454362f1ff849dadb98b6807930a4b58aac..2748d1be7f68b364c56ba0b125dc5452d4c59004 100644 |
--- a/chrome/browser/download/download_crx_util.cc |
+++ b/chrome/browser/download/download_crx_util.cc |
@@ -69,7 +69,7 @@ void SetMockInstallPromptForTesting(ExtensionInstallPrompt* mock_prompt) { |
mock_install_prompt_for_testing = mock_prompt; |
} |
-scoped_refptr<CrxInstaller> OpenChromeExtension( |
+scoped_refptr<extensions::CrxInstaller> OpenChromeExtension( |
Profile* profile, |
const DownloadItem& download_item) { |
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
@@ -77,8 +77,8 @@ scoped_refptr<CrxInstaller> OpenChromeExtension( |
ExtensionService* service = profile->GetExtensionService(); |
CHECK(service); |
- scoped_refptr<CrxInstaller> installer( |
- CrxInstaller::Create( |
+ scoped_refptr<extensions::CrxInstaller> installer( |
+ extensions::CrxInstaller::Create( |
service, |
CreateExtensionInstallPrompt(profile), |
WebstoreInstaller::GetAssociatedApproval(download_item))); |
@@ -88,7 +88,7 @@ scoped_refptr<CrxInstaller> OpenChromeExtension( |
if (OffStoreInstallAllowedByPrefs(profile, download_item)) { |
installer->set_off_store_install_allow_reason( |
- CrxInstaller::OffStoreInstallAllowedBecausePref); |
+ extensions::CrxInstaller::OffStoreInstallAllowedBecausePref); |
} |
if (extensions::UserScript::IsURLUserScript(download_item.GetURL(), |