🔧 Linter's gotta lint

This commit is contained in:
Felix Rieseberg 2017-12-13 16:31:02 -08:00
parent 8a8aaaf16c
commit 75cdd9ec70
2 changed files with 22 additions and 18 deletions

View file

@ -9,11 +9,11 @@
#include <string>
#include <vector>
#include "base/environment.h"
#include "base/files/file_util.h"
#include "base/md5.h"
#include "base/strings/utf_string_conversions.h"
#include "base/time/time.h"
#include "base/environment.h"
#include "base/win/windows_version.h"
#include "brightray/browser/win/notification_presenter_win7.h"
#include "brightray/browser/win/windows_toast_notification.h"
@ -55,9 +55,8 @@ NotificationPresenter* NotificationPresenter::Create() {
if (!presenter->Init())
return nullptr;
if (IsDebuggingNotifications()) {
if (IsDebuggingNotifications())
LOG(INFO) << "Successfully created Windows notifications presenter";
}
return presenter.release();
}

View file

@ -27,7 +27,6 @@ using ABI::Windows::Data::Xml::Dom::IXmlNode;
using ABI::Windows::Data::Xml::Dom::IXmlNodeList;
using ABI::Windows::Data::Xml::Dom::IXmlText;
namespace brightray {
namespace {
@ -173,22 +172,28 @@ bool WindowsToastNotification::GetToastXml(
? ABI::Windows::UI::Notifications::ToastTemplateType_ToastText02
: ABI::Windows::UI::Notifications::
ToastTemplateType_ToastImageAndText02;
if (FAILED(toastManager->GetTemplateContent(template_type, toast_xml)))
if (IsDebuggingNotifications()) LOG(INFO) << "Fetching XML template failed";
if (FAILED(toastManager->GetTemplateContent(template_type, toast_xml))) {
if (IsDebuggingNotifications())
LOG(INFO) << "Fetching XML template failed";
return false;
if (!SetXmlText(*toast_xml, title, msg))
if (IsDebuggingNotifications()) LOG(INFO) << "Setting text fields on template failed";
}
if (!SetXmlText(*toast_xml, title, msg)) {
if (IsDebuggingNotifications())
LOG(INFO) << "Setting text fields on template failed";
return false;
}
}
// Configure the toast's notification sound
if (silent) {
if (FAILED(SetXmlAudioSilent(*toast_xml)))
if (FAILED(SetXmlAudioSilent(*toast_xml))) {
if (IsDebuggingNotifications()) {
LOG(INFO) << "Setting \"silent\" option on notification failed";
}
return false;
}
}
// Configure the toast's image