| Index: chrome/browser/background/background_application_list_model.cc
|
| diff --git a/chrome/browser/background/background_application_list_model.cc b/chrome/browser/background/background_application_list_model.cc
|
| index 34f273c4de81cce6fc7447f846f7af7db8000985..21122bdfcec86a6bfb17b8da768ac56bac4d5d65 100644
|
| --- a/chrome/browser/background/background_application_list_model.cc
|
| +++ b/chrome/browser/background/background_application_list_model.cc
|
| @@ -179,7 +179,7 @@ BackgroundApplicationListModel::BackgroundApplicationListModel(Profile* profile)
|
| chrome::NOTIFICATION_EXTENSION_LOADED,
|
| content::Source<Profile>(profile));
|
| registrar_.Add(this,
|
| - chrome::NOTIFICATION_EXTENSION_UNLOADED,
|
| + chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED,
|
| content::Source<Profile>(profile));
|
| registrar_.Add(this,
|
| chrome::NOTIFICATION_EXTENSIONS_READY,
|
| @@ -353,7 +353,7 @@ void BackgroundApplicationListModel::Observe(
|
| case chrome::NOTIFICATION_EXTENSION_LOADED:
|
| OnExtensionLoaded(content::Details<Extension>(details).ptr());
|
| break;
|
| - case chrome::NOTIFICATION_EXTENSION_UNLOADED:
|
| + case chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED:
|
| OnExtensionUnloaded(
|
| content::Details<UnloadedExtensionInfo>(details)->extension);
|
| break;
|
|
|