| 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 7ffb2206b0df5c7aa0edba6d03d59ff17013c22a..9969a8f4749ff0708567e0fda7af3ad148cec1df 100644
|
| --- a/chrome/browser/background/background_application_list_model.cc
|
| +++ b/chrome/browser/background/background_application_list_model.cc
|
| @@ -176,7 +176,7 @@ BackgroundApplicationListModel::BackgroundApplicationListModel(Profile* profile)
|
| : profile_(profile) {
|
| DCHECK(profile_);
|
| registrar_.Add(this,
|
| - chrome::NOTIFICATION_EXTENSION_LOADED,
|
| + chrome::NOTIFICATION_EXTENSION_LOADED_DEPRECATED,
|
| content::Source<Profile>(profile));
|
| registrar_.Add(this,
|
| chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED,
|
| @@ -350,7 +350,7 @@ void BackgroundApplicationListModel::Observe(
|
| return;
|
|
|
| switch (type) {
|
| - case chrome::NOTIFICATION_EXTENSION_LOADED:
|
| + case chrome::NOTIFICATION_EXTENSION_LOADED_DEPRECATED:
|
| OnExtensionLoaded(content::Details<Extension>(details).ptr());
|
| break;
|
| case chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED:
|
|
|