| Index: chrome/browser/extensions/api/image_writer_private/operation_manager.cc
|
| diff --git a/chrome/browser/extensions/api/image_writer_private/operation_manager.cc b/chrome/browser/extensions/api/image_writer_private/operation_manager.cc
|
| index 2de8d1973cac70b23ff1039b38fa7333cee14dce..32f712248cd8c9fd5db34ada2d47bebcb297105b 100644
|
| --- a/chrome/browser/extensions/api/image_writer_private/operation_manager.cc
|
| +++ b/chrome/browser/extensions/api/image_writer_private/operation_manager.cc
|
| @@ -31,7 +31,7 @@ OperationManager::OperationManager(content::BrowserContext* context)
|
| : profile_(Profile::FromBrowserContext(context)), weak_factory_(this) {
|
| registrar_.Add(this, chrome::NOTIFICATION_EXTENSION_UNINSTALLED,
|
| content::Source<Profile>(profile_));
|
| - registrar_.Add(this, chrome::NOTIFICATION_EXTENSION_UNLOADED,
|
| + registrar_.Add(this, chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED,
|
| content::Source<Profile>(profile_));
|
| registrar_.Add(this, chrome::NOTIFICATION_EXTENSION_PROCESS_TERMINATED,
|
| content::Source<Profile>(profile_));
|
| @@ -213,7 +213,7 @@ void OperationManager::Observe(int type,
|
| DeleteOperation(content::Details<const Extension>(details).ptr()->id());
|
| break;
|
| }
|
| - case chrome::NOTIFICATION_EXTENSION_UNLOADED: {
|
| + case chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED: {
|
| DeleteOperation(content::Details<const Extension>(details).ptr()->id());
|
| break;
|
| }
|
|
|