summaryrefslogtreecommitdiffstats
path: root/chromium/content/public/browser/desktop_notification_delegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/public/browser/desktop_notification_delegate.h')
-rw-r--r--chromium/content/public/browser/desktop_notification_delegate.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/chromium/content/public/browser/desktop_notification_delegate.h b/chromium/content/public/browser/desktop_notification_delegate.h
new file mode 100644
index 00000000000..27c5fd7f28c
--- /dev/null
+++ b/chromium/content/public/browser/desktop_notification_delegate.h
@@ -0,0 +1,31 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_PUBLIC_BROWSER_DESKTOP_NOTIFICATION_DELEGATE_H_
+#define CONTENT_PUBLIC_BROWSER_DESKTOP_NOTIFICATION_DELEGATE_H_
+
+namespace content {
+
+// A delegate used by ContentBrowserClient::ShowDesktopNotification to report
+// the result of a desktop notification.
+class DesktopNotificationDelegate {
+ public:
+ virtual ~DesktopNotificationDelegate() {}
+
+ // The notification was shown.
+ virtual void NotificationDisplayed() = 0;
+
+ // The notification couldn't be shown due to an error.
+ virtual void NotificationError() = 0;
+
+ // The notification was closed.
+ virtual void NotificationClosed(bool by_user) = 0;
+
+ // The user clicked on the notification.
+ virtual void NotificationClick() = 0;
+};
+
+} // namespace content
+
+#endif // CONTENT_PUBLIC_BROWSER_DESKTOP_NOTIFICATION_DELEGATE_H_