🔧 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"
@ -54,10 +54,9 @@ NotificationPresenter* NotificationPresenter::Create() {
new NotificationPresenterWin);
if (!presenter->Init())
return nullptr;
if (IsDebuggingNotifications()) {
if (IsDebuggingNotifications())
LOG(INFO) << "Successfully created Windows notifications presenter";
}
return presenter.release();
}