Standardize usage of virtual/override/final in content/
[chromium-blink-merge.git] / content / public / browser / desktop_notification_delegate.h
blob27c5fd7f28c08423b4e96d8560e411c3ad4551f6
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_PUBLIC_BROWSER_DESKTOP_NOTIFICATION_DELEGATE_H_
6 #define CONTENT_PUBLIC_BROWSER_DESKTOP_NOTIFICATION_DELEGATE_H_
8 namespace content {
10 // A delegate used by ContentBrowserClient::ShowDesktopNotification to report
11 // the result of a desktop notification.
12 class DesktopNotificationDelegate {
13 public:
14 virtual ~DesktopNotificationDelegate() {}
16 // The notification was shown.
17 virtual void NotificationDisplayed() = 0;
19 // The notification couldn't be shown due to an error.
20 virtual void NotificationError() = 0;
22 // The notification was closed.
23 virtual void NotificationClosed(bool by_user) = 0;
25 // The user clicked on the notification.
26 virtual void NotificationClick() = 0;
29 } // namespace content
31 #endif // CONTENT_PUBLIC_BROWSER_DESKTOP_NOTIFICATION_DELEGATE_H_