| 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.
|
|
|