| Index: chrome/browser/extensions/chrome_notification_observer.h
|
| diff --git a/chrome/browser/extensions/chrome_notification_observer.h b/chrome/browser/extensions/chrome_notification_observer.h
|
| index fd57766eed588360306362caca8619d54e40d974..7980dff1b0ea553b75cf55a4d31c15fa1eab8706 100644
|
| --- a/chrome/browser/extensions/chrome_notification_observer.h
|
| +++ b/chrome/browser/extensions/chrome_notification_observer.h
|
| @@ -23,15 +23,15 @@ namespace extensions {
|
| class ChromeNotificationObserver : public content::NotificationObserver {
|
| public:
|
| ChromeNotificationObserver();
|
| - virtual ~ChromeNotificationObserver();
|
| + ~ChromeNotificationObserver() override;
|
|
|
| // Notification handlers:
|
| void OnRendererProcessCreated(content::RenderProcessHost* process);
|
|
|
| // 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;
|
|
|
| private:
|
| content::NotificationRegistrar registrar_;
|
|
|