Index: third_party/WebKit/Source/modules/notifications/ServiceWorkerRegistrationNotifications.cpp |
diff --git a/third_party/WebKit/Source/modules/notifications/ServiceWorkerRegistrationNotifications.cpp b/third_party/WebKit/Source/modules/notifications/ServiceWorkerRegistrationNotifications.cpp |
index 4f682f416690ae527e5f52a253e6f229d41fda50..97a8a2eb617672c70453225cb0310951efd90566 100644 |
--- a/third_party/WebKit/Source/modules/notifications/ServiceWorkerRegistrationNotifications.cpp |
+++ b/third_party/WebKit/Source/modules/notifications/ServiceWorkerRegistrationNotifications.cpp |
@@ -31,7 +31,7 @@ public: |
{ |
HeapVector<Member<Notification>> notifications; |
for (const WebPersistentNotificationInfo& notificationInfo : notificationInfos) |
- notifications.append(Notification::create(resolver->executionContext(), notificationInfo.persistentId, notificationInfo.data)); |
+ notifications.append(Notification::create(resolver->executionContext(), notificationInfo.persistentId, notificationInfo.data, true)); |
Peter Beverloo
2016/01/26 16:13:45
, true /* showing */)
Nina
2016/01/27 18:48:58
Added here and in two more analogous places.
|
return notifications; |
} |