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

Unified Diff: chrome/browser/policy/app_pack_updater.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
Index: chrome/browser/policy/app_pack_updater.cc
diff --git a/chrome/browser/policy/app_pack_updater.cc b/chrome/browser/policy/app_pack_updater.cc
index e0b1a96c6d72da4a0ff7892203c395012f4e02b0..472fc09eb8005b89772ec3c5a533ccf65c487ac9 100644
--- a/chrome/browser/policy/app_pack_updater.cc
+++ b/chrome/browser/policy/app_pack_updater.cc
@@ -162,7 +162,8 @@ void AppPackUpdater::Observe(int type,
break;
case chrome::NOTIFICATION_EXTENSION_INSTALL_ERROR:
- OnCrxInstallFailed(content::Source<CrxInstaller>(source).ptr());
+ OnCrxInstallFailed(
+ content::Source<extensions::CrxInstaller>(source).ptr());
break;
default:
@@ -546,7 +547,7 @@ void AppPackUpdater::OnCacheEntryInstalled(const std::string& id,
}
}
-void AppPackUpdater::OnCrxInstallFailed(CrxInstaller* installer) {
+void AppPackUpdater::OnCrxInstallFailed(extensions::CrxInstaller* installer) {
FilePath path = installer->source_file();
// Search for |path| in |cached_extensions_|, and delete it if found.
« no previous file with comments | « chrome/browser/policy/app_pack_updater.h ('k') | chrome/browser/ui/webui/extensions/install_extension_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698