Fix cpp lint errors

This commit is contained in:
deepak1556 2017-11-02 19:44:14 +05:30 committed by Cheng Zhao
parent e60557e2e6
commit 214cbf357a

View file

@ -7,19 +7,19 @@
#include <string>
namespace brightray {
class NotificationDelegate {
public:
// The native Notification object is destroyed.
virtual void NotificationDestroyed() {}
// Failed to send the notification.
virtual void NotificationFailed() {}
// Notification was replied to
virtual void NotificationReplied(const std::string& reply) {}
virtual void NotificationAction(int index) {}
namespace brightray {
class NotificationDelegate {
public:
// The native Notification object is destroyed.
virtual void NotificationDestroyed() {}
// Failed to send the notification.
virtual void NotificationFailed() {}
// Notification was replied to
virtual void NotificationReplied(const std::string& reply) {}
virtual void NotificationAction(int index) {}
virtual void NotificationClick() {}
virtual void NotificationClosed() {}
@ -28,8 +28,8 @@ class NotificationDelegate {
protected:
NotificationDelegate() = default;
~NotificationDelegate() = default;
};
} // namespace brightray
#endif // BRIGHTRAY_BROWSER_NOTIFICATION_DELEGATE_H_
};
} // namespace brightray
#endif // BRIGHTRAY_BROWSER_NOTIFICATION_DELEGATE_H_