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

Unified Diff: chrome/browser/chromeos/extensions/file_manager_util.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/chromeos/extensions/file_manager_util.cc
diff --git a/chrome/browser/chromeos/extensions/file_manager_util.cc b/chrome/browser/chromeos/extensions/file_manager_util.cc
index 686b641ac2aec3159ad2a6fb0b730bc932b5ff03..3ad7c9104543d7383f7e343c84288c0f7e7f5738 100644
--- a/chrome/browser/chromeos/extensions/file_manager_util.cc
+++ b/chrome/browser/chromeos/extensions/file_manager_util.cc
@@ -669,8 +669,9 @@ void InstallCRX(Browser* browser, const FilePath& path) {
ExtensionService* service = browser->profile()->GetExtensionService();
CHECK(service);
- scoped_refptr<CrxInstaller> installer(
- CrxInstaller::Create(service, new ExtensionInstallPrompt(browser)));
+ scoped_refptr<extensions::CrxInstaller> installer(
+ extensions::CrxInstaller::Create(
+ service, new ExtensionInstallPrompt(browser)));
installer->set_is_gallery_install(false);
installer->set_allow_silent_install(false);
installer->InstallCrx(path);

Powered by Google App Engine
This is Rietveld 408576698