| Index: chrome/browser/notifications/notification_system_observer.h
|
| diff --git a/chrome/browser/notifications/notification_system_observer.h b/chrome/browser/notifications/notification_system_observer.h
|
| index 88ea169c7dfb8fadc2d4217512b560e4edf4f183..7b5fe88c019c27461f6050c1223f9d4ad3e5e232 100644
|
| --- a/chrome/browser/notifications/notification_system_observer.h
|
| +++ b/chrome/browser/notifications/notification_system_observer.h
|
| @@ -15,13 +15,13 @@ class NotificationUIManager;
|
| class NotificationSystemObserver : public content::NotificationObserver {
|
| public:
|
| explicit NotificationSystemObserver(NotificationUIManager* ui_manager);
|
| - virtual ~NotificationSystemObserver();
|
| + ~NotificationSystemObserver() override;
|
|
|
| protected:
|
| // content::NotificationObserver override.
|
| - 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:
|
| // Registrar for the other kind of notifications (event signaling).
|
|
|