Fix cpp lint errors
This commit is contained in:
parent
e60557e2e6
commit
214cbf357a
1 changed files with 18 additions and 18 deletions
|
@ -7,19 +7,19 @@
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
namespace brightray {
|
namespace brightray {
|
||||||
|
|
||||||
class NotificationDelegate {
|
class NotificationDelegate {
|
||||||
public:
|
public:
|
||||||
// The native Notification object is destroyed.
|
// The native Notification object is destroyed.
|
||||||
virtual void NotificationDestroyed() {}
|
virtual void NotificationDestroyed() {}
|
||||||
|
|
||||||
// Failed to send the notification.
|
// Failed to send the notification.
|
||||||
virtual void NotificationFailed() {}
|
virtual void NotificationFailed() {}
|
||||||
|
|
||||||
// Notification was replied to
|
// Notification was replied to
|
||||||
virtual void NotificationReplied(const std::string& reply) {}
|
virtual void NotificationReplied(const std::string& reply) {}
|
||||||
virtual void NotificationAction(int index) {}
|
virtual void NotificationAction(int index) {}
|
||||||
|
|
||||||
virtual void NotificationClick() {}
|
virtual void NotificationClick() {}
|
||||||
virtual void NotificationClosed() {}
|
virtual void NotificationClosed() {}
|
||||||
|
@ -28,8 +28,8 @@ class NotificationDelegate {
|
||||||
protected:
|
protected:
|
||||||
NotificationDelegate() = default;
|
NotificationDelegate() = default;
|
||||||
~NotificationDelegate() = default;
|
~NotificationDelegate() = default;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace brightray
|
} // namespace brightray
|
||||||
|
|
||||||
#endif // BRIGHTRAY_BROWSER_NOTIFICATION_DELEGATE_H_
|
#endif // BRIGHTRAY_BROWSER_NOTIFICATION_DELEGATE_H_
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue