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> #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_