Format line length to 80 instead of 100
This commit is contained in:
parent
be0c0e278a
commit
2ece711c2e
27 changed files with 161 additions and 96 deletions
|
@ -38,7 +38,8 @@ bool SaveIconToPath(const SkBitmap& bitmap, const base::FilePath& path) {
|
|||
NotificationPresenter* NotificationPresenter::Create() {
|
||||
if (!WindowsToastNotification::Initialize())
|
||||
return nullptr;
|
||||
std::unique_ptr<NotificationPresenterWin> presenter(new NotificationPresenterWin);
|
||||
std::unique_ptr<NotificationPresenterWin> presenter(
|
||||
new NotificationPresenterWin);
|
||||
if (!presenter->Init())
|
||||
return nullptr;
|
||||
return presenter.release();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue