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 c867ad3589b11962460adf2ef83c3f9942e709af..59a2d155e1b091207a8bc9a0de45afcd984a4ec4 100644 |
--- a/chrome/browser/download/download_crx_util.cc |
+++ b/chrome/browser/download/download_crx_util.cc |
@@ -68,7 +68,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)); |
@@ -76,8 +76,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))); |
@@ -87,7 +87,7 @@ scoped_refptr<CrxInstaller> OpenChromeExtension( |
if (OffStoreInstallAllowedByPrefs(profile, download_item)) { |
installer->set_off_store_install_allow_reason( |
- CrxInstaller::OffStoreInstallAllowedBecausePref); |
+ extensions::CrxInstaller::OffStoreInstallAllowedBecausePref); |
} |
if (UserScript::IsURLUserScript(download_item.GetURL(), |