diff options
Diffstat (limited to 'chromium/components/exo/notification_surface_manager.h')
-rw-r--r-- | chromium/components/exo/notification_surface_manager.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/chromium/components/exo/notification_surface_manager.h b/chromium/components/exo/notification_surface_manager.h index f5427b815fc..5840cfce000 100644 --- a/chromium/components/exo/notification_surface_manager.h +++ b/chromium/components/exo/notification_surface_manager.h @@ -13,6 +13,8 @@ class NotificationSurface; class NotificationSurfaceManager { public: + virtual ~NotificationSurfaceManager() = default; + // Gets the NotificationSurface associated with the given notification id. // Returns nullptr if no NotificationSurface is associated with the id. virtual NotificationSurface* GetSurface( @@ -23,9 +25,6 @@ class NotificationSurfaceManager { // Removes a NotificationSurface from the manager. virtual void RemoveSurface(NotificationSurface* surface) = 0; - - protected: - virtual ~NotificationSurfaceManager() {} }; } // namespace exo |