Index: chrome/browser/notifications/desktop_notification_service.h |
diff --git a/chrome/browser/notifications/desktop_notification_service.h b/chrome/browser/notifications/desktop_notification_service.h |
index f337c9fbfd0323dfa5b89b1d2111d5bfbf0da076..e323d1a53067e8675b74d1793da64a44ebc86df5 100644 |
--- a/chrome/browser/notifications/desktop_notification_service.h |
+++ b/chrome/browser/notifications/desktop_notification_service.h |
@@ -80,7 +80,7 @@ class DesktopNotificationService : public PermissionContextBase |
Profile* profile); |
explicit DesktopNotificationService(Profile* profile); |
- virtual ~DesktopNotificationService(); |
+ ~DesktopNotificationService() override; |
// Requests Web Notification permission for |requesting_frame|. The |callback| |
// will be invoked after the user has made a decision. |
@@ -133,16 +133,15 @@ class DesktopNotificationService : public PermissionContextBase |
#if defined(ENABLE_EXTENSIONS) |
// extensions::ExtensionRegistryObserver: |
- virtual void OnExtensionUninstalled( |
- content::BrowserContext* browser_context, |
- const extensions::Extension* extension, |
- extensions::UninstallReason reason) override; |
+ void OnExtensionUninstalled(content::BrowserContext* browser_context, |
+ const extensions::Extension* extension, |
+ extensions::UninstallReason reason) override; |
#endif |
// PermissionContextBase: |
- virtual void UpdateContentSetting(const GURL& requesting_origin, |
- const GURL& embedder_origin, |
- bool allowed) override; |
+ void UpdateContentSetting(const GURL& requesting_origin, |
+ const GURL& embedder_origin, |
+ bool allowed) override; |
// The profile which owns this object. |
Profile* profile_; |