| Index: chrome/browser/ui/extensions/extension_installed_bubble.h
|
| diff --git a/chrome/browser/ui/extensions/extension_installed_bubble.h b/chrome/browser/ui/extensions/extension_installed_bubble.h
|
| index ab160f66c4823f92e5699f99b5216cafd687c96e..08bbf95f16c76b35d7f1be17ab941df200894192 100644
|
| --- a/chrome/browser/ui/extensions/extension_installed_bubble.h
|
| +++ b/chrome/browser/ui/extensions/extension_installed_bubble.h
|
| @@ -57,7 +57,7 @@ class ExtensionInstalledBubble : public content::NotificationObserver,
|
| Browser *browser,
|
| const SkBitmap& icon);
|
|
|
| - virtual ~ExtensionInstalledBubble();
|
| + ~ExtensionInstalledBubble() override;
|
|
|
| const extensions::Extension* extension() const { return extension_; }
|
| Browser* browser() { return browser_; }
|
| @@ -73,15 +73,14 @@ class ExtensionInstalledBubble : public content::NotificationObserver,
|
| void ShowInternal();
|
|
|
| // content::NotificationObserver:
|
| - 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;
|
|
|
| // extensions::ExtensionRegistryObserver:
|
| - virtual void OnExtensionLoaded(
|
| - content::BrowserContext* browser_context,
|
| - const extensions::Extension* extension) override;
|
| - virtual void OnExtensionUnloaded(
|
| + void OnExtensionLoaded(content::BrowserContext* browser_context,
|
| + const extensions::Extension* extension) override;
|
| + void OnExtensionUnloaded(
|
| content::BrowserContext* browser_context,
|
| const extensions::Extension* extension,
|
| extensions::UnloadedExtensionInfo::Reason reason) override;
|
|
|