Index: third_party/WebKit/Source/modules/notifications/Notification.cpp |
diff --git a/third_party/WebKit/Source/modules/notifications/Notification.cpp b/third_party/WebKit/Source/modules/notifications/Notification.cpp |
index 930099c9ba50e0fd2bf76b03226ff9b12ceaa0ce..a7a879a3e270c614c8e85fd302acd3c4159b785d 100644 |
--- a/third_party/WebKit/Source/modules/notifications/Notification.cpp |
+++ b/third_party/WebKit/Source/modules/notifications/Notification.cpp |
@@ -187,8 +187,9 @@ void Notification::close() { |
// Persistent notifications won't get such events for programmatic closes. |
if (m_type == Type::NonPersistent) { |
TaskRunnerHelper::get(TaskType::UserInteraction, getExecutionContext()) |
- ->postTask(BLINK_FROM_HERE, WTF::bind(&Notification::dispatchCloseEvent, |
- wrapPersistent(this))); |
+ ->postTask( |
+ BLINK_FROM_HERE, |
+ WTF::bind(&Notification::dispatchCloseEvent, wrapPersistent(this))); |
m_state = State::Closing; |
notificationManager()->close(this); |