| Index: extensions/browser/extension_icon_image.h
|
| diff --git a/extensions/browser/extension_icon_image.h b/extensions/browser/extension_icon_image.h
|
| index 0ecb6343043cd91f86e0621eb33b9e49cd7af516..90e90cbfd5858223b93de2ae91e9fcc8dce07c26 100644
|
| --- a/extensions/browser/extension_icon_image.h
|
| +++ b/extensions/browser/extension_icon_image.h
|
| @@ -69,7 +69,7 @@ class IconImage : public content::NotificationObserver {
|
| int resource_size_in_dip,
|
| const gfx::ImageSkia& default_icon,
|
| Observer* observer);
|
| - virtual ~IconImage();
|
| + ~IconImage() override;
|
|
|
| const gfx::ImageSkia& image_skia() const { return image_skia_; }
|
|
|
| @@ -87,9 +87,9 @@ class IconImage : public content::NotificationObserver {
|
| void OnImageLoaded(float scale_factor, const gfx::Image& image);
|
|
|
| // content::NotificationObserver overrides:
|
| - virtual void Observe(int type,
|
| - const content::NotificationSource& source,
|
| - const content::NotificationDetails& details) override;
|
| + void Observe(int type,
|
| + const content::NotificationSource& source,
|
| + const content::NotificationDetails& details) override;
|
|
|
| content::BrowserContext* browser_context_;
|
| const Extension* extension_;
|
|
|