Index: chrome/browser/notifications/fullscreen_notification_blocker.h |
diff --git a/chrome/browser/notifications/fullscreen_notification_blocker.h b/chrome/browser/notifications/fullscreen_notification_blocker.h |
index de51ec07f5329cf7bd0b71ef0816d782f665a57e..439e7666d287fa26b522a2ff42d83ba451fd68f9 100644 |
--- a/chrome/browser/notifications/fullscreen_notification_blocker.h |
+++ b/chrome/browser/notifications/fullscreen_notification_blocker.h |
@@ -17,20 +17,20 @@ class FullscreenNotificationBlocker |
public: |
explicit FullscreenNotificationBlocker( |
message_center::MessageCenter* message_center); |
- virtual ~FullscreenNotificationBlocker(); |
+ ~FullscreenNotificationBlocker() override; |
bool is_fullscreen_mode() const { return is_fullscreen_mode_; } |
// message_center::NotificationBlocker overrides: |
- virtual void CheckState() override; |
- virtual bool ShouldShowNotificationAsPopup( |
+ void CheckState() override; |
+ bool ShouldShowNotificationAsPopup( |
const message_center::NotifierId& notifier_id) const override; |
private: |
// 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; |
bool is_fullscreen_mode_; |