Address cpplint issue "Lines should be <= 80 characters long [whitespace/line_length] [2]"
This commit is contained in:
parent
392d606848
commit
0bba5b9b41
16 changed files with 238 additions and 106 deletions
|
@ -7,8 +7,14 @@ namespace brightray {
|
|||
class Win32Notification : public brightray::Notification
|
||||
{
|
||||
public:
|
||||
Win32Notification(NotificationDelegate* delegate, NotificationPresenterWin7* presenter) : Notification(delegate, presenter) {}
|
||||
void Show(const base::string16& title, const base::string16& msg, const std::string& tag, const GURL& icon_url, const SkBitmap& icon, const bool silent) override;
|
||||
Win32Notification(NotificationDelegate* delegate,
|
||||
NotificationPresenterWin7* presenter) :
|
||||
Notification(delegate, presenter)
|
||||
{
|
||||
}
|
||||
void Show(const base::string16& title, const base::string16& msg,
|
||||
const std::string& tag, const GURL& icon_url,
|
||||
const SkBitmap& icon, const bool silent) override;
|
||||
void Dismiss() override;
|
||||
|
||||
const DesktopNotificationController::Notification& GetRef() const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue