| Index: chrome/browser/extensions/extension_icon_image.cc
|
| diff --git a/chrome/browser/extensions/extension_icon_image.cc b/chrome/browser/extensions/extension_icon_image.cc
|
| index 625bb01f13ad408b72bd216473177e4c97a3c71d..07e62aa962a54b7d70a6ca76c3cc1ed47d3ffe68 100644
|
| --- a/chrome/browser/extensions/extension_icon_image.cc
|
| +++ b/chrome/browser/extensions/extension_icon_image.cc
|
| @@ -149,7 +149,7 @@ IconImage::IconImage(
|
| source_ = new Source(this, resource_size);
|
| image_skia_ = gfx::ImageSkia(source_, resource_size);
|
|
|
| - registrar_.Add(this, chrome::NOTIFICATION_EXTENSION_UNLOADED,
|
| + registrar_.Add(this, chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED,
|
| content::NotificationService::AllSources());
|
| }
|
|
|
| @@ -227,7 +227,7 @@ void IconImage::OnImageLoaded(float scale, const gfx::Image& image_in) {
|
| void IconImage::Observe(int type,
|
| const content::NotificationSource& source,
|
| const content::NotificationDetails& details) {
|
| - DCHECK_EQ(type, chrome::NOTIFICATION_EXTENSION_UNLOADED);
|
| + DCHECK_EQ(type, chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED);
|
|
|
| const Extension* extension =
|
| content::Details<extensions::UnloadedExtensionInfo>(details)->extension;
|
|
|