Browse Source

Fix linting issues

Samuel Attard 8 years ago
parent
commit
686b1388b1

+ 4 - 3
atom/browser/api/atom_api_notification.cc

@@ -88,8 +88,8 @@ void Notification::SetBody(const base::string16& new_body) {
 void Notification::SetSilent(bool new_silent) {
   silent_ = new_silent;
 }
-void Notification::SetReplyPlaceholder(const base::string16& new_reply_placeholder) {
-  reply_placeholder_ = new_reply_placeholder;
+void Notification::SetReplyPlaceholder(const base::string16& new_placeholder) {
+  reply_placeholder_ = new_placeholder;
 }
 void Notification::SetHasReply(bool new_has_reply) {
   has_reply_ = new_has_reply;
@@ -118,7 +118,8 @@ void Notification::Show() {
   if (presenter_) {
     notification_ = presenter_->CreateNotification(this);
     if (notification_) {
-      notification_->Show(title_, body_, "", GURL(), icon_.AsBitmap(), silent_, has_reply_, reply_placeholder_);
+      notification_->Show(title_, body_, "", GURL(), icon_.AsBitmap(), silent_,
+                          has_reply_, reply_placeholder_);
     }
   }
 }

+ 2 - 1
brightray/browser/notification_delegate.h

@@ -5,9 +5,10 @@
 #ifndef BRIGHTRAY_BROWSER_NOTIFICATION_DELEGATE_H_
 #define BRIGHTRAY_BROWSER_NOTIFICATION_DELEGATE_H_
 
-#include "content/public/browser/desktop_notification_delegate.h"
 #include <string>
 
+#include "content/public/browser/desktop_notification_delegate.h"
+
 namespace brightray {
 
 class NotificationDelegate : public content::DesktopNotificationDelegate {

+ 2 - 1
brightray/browser/platform_notification_service.cc

@@ -31,7 +31,8 @@ void OnWebNotificationAllowed(base::WeakPtr<Notification> notification,
     return;
   if (allowed)
     notification->Show(data.title, data.body, data.tag, data.icon, icon,
-                       audio_muted ? true : data.silent, false, base::UTF8ToUTF16(""));
+                       audio_muted ? true : data.silent, false,
+                       base::UTF8ToUTF16(""));
   else
     notification->Destroy();
 }

+ 1 - 1
brightray/browser/win/notification_presenter_win.cc

@@ -16,7 +16,7 @@
 #include "brightray/browser/win/notification_presenter_win7.h"
 #include "brightray/browser/win/windows_toast_notification.h"
 #include "content/public/browser/desktop_notification_delegate.h"
-#include "content/public/common/platform_notification_data.h" 
+#include "content/public/common/platform_notification_data.h"
 #include "third_party/skia/include/core/SkBitmap.h"
 #include "ui/gfx/codec/png_codec.h"