electron/shell/browser/notifications/notification_delegate.h
bitdisaster b43859f098
feat: custom toast xml and failure reporting for notifications (#25401)
* allow custom toast xml and report failures

* docs

* tests

* don't use namespaces

* lint doesn't like trailing commas

* addressing feedback
2020-09-29 12:20:10 -07:00

35 lines
978 B
C++

// Copyright (c) 2015 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#ifndef SHELL_BROWSER_NOTIFICATIONS_NOTIFICATION_DELEGATE_H_
#define SHELL_BROWSER_NOTIFICATIONS_NOTIFICATION_DELEGATE_H_
#include <string>
namespace electron {
class NotificationDelegate {
public:
// The native Notification object is destroyed.
virtual void NotificationDestroyed() {}
// Failed to send the notification.
virtual void NotificationFailed(const std::string& error) {}
// Notification was replied to
virtual void NotificationReplied(const std::string& reply) {}
virtual void NotificationAction(int index) {}
virtual void NotificationClick() {}
virtual void NotificationClosed() {}
virtual void NotificationDisplayed() {}
protected:
NotificationDelegate() = default;
~NotificationDelegate() = default;
};
} // namespace electron
#endif // SHELL_BROWSER_NOTIFICATIONS_NOTIFICATION_DELEGATE_H_