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

Unified Diff: chrome/browser/ui/webui/extensions/install_extension_handler.cc

Issue 10683003: Moved CrxInstaller and CrxInstallerError into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Latest-er master Created 8 years, 5 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
« no previous file with comments | « chrome/browser/policy/app_pack_updater.cc ('k') | chrome/browser/ui/webui/ntp/app_launcher_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/extensions/install_extension_handler.cc
diff --git a/chrome/browser/ui/webui/extensions/install_extension_handler.cc b/chrome/browser/ui/webui/extensions/install_extension_handler.cc
index 03e77b8fd9d102950d2166b4faa028bd633031a9..b687f5fb3e2ea481183a0a8292312caa83527e54 100644
--- a/chrome/browser/ui/webui/extensions/install_extension_handler.cc
+++ b/chrome/browser/ui/webui/extensions/install_extension_handler.cc
@@ -83,12 +83,12 @@ void InstallExtensionHandler::HandleInstallMessage(const ListValue* args) {
Browser* browser = browser::FindBrowserWithWebContents(
web_ui()->GetWebContents());
Profile* profile = browser->profile();
- scoped_refptr<CrxInstaller> crx_installer(
- CrxInstaller::Create(
+ scoped_refptr<extensions::CrxInstaller> crx_installer(
+ extensions::CrxInstaller::Create(
extensions::ExtensionSystem::Get(profile)->extension_service(),
chrome::CreateExtensionInstallPromptWithBrowser(browser)));
crx_installer->set_off_store_install_allow_reason(
- CrxInstaller::OffStoreInstallAllowedFromSettingsPage);
+ extensions::CrxInstaller::OffStoreInstallAllowedFromSettingsPage);
const bool kCaseSensitive = false;
« no previous file with comments | « chrome/browser/policy/app_pack_updater.cc ('k') | chrome/browser/ui/webui/ntp/app_launcher_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698