| Index: third_party/WebKit/Source/modules/notifications/NotificationEvent.cpp
|
| diff --git a/third_party/WebKit/Source/modules/notifications/NotificationEvent.cpp b/third_party/WebKit/Source/modules/notifications/NotificationEvent.cpp
|
| index e93968ccbb0b119173d7a93923a00b1fb0d24994..9aabfc6fc674b74a70e411c4b321da131b15daef 100644
|
| --- a/third_party/WebKit/Source/modules/notifications/NotificationEvent.cpp
|
| +++ b/third_party/WebKit/Source/modules/notifications/NotificationEvent.cpp
|
| @@ -12,6 +12,7 @@ namespace blink {
|
| NotificationEvent::NotificationEvent(const AtomicString& type, const NotificationEventInit& initializer)
|
| : ExtendableEvent(type, initializer)
|
| , m_action(initializer.action())
|
| + , m_reply(initializer.reply())
|
| {
|
| if (initializer.hasNotification())
|
| m_notification = initializer.notification();
|
| @@ -20,6 +21,7 @@ NotificationEvent::NotificationEvent(const AtomicString& type, const Notificatio
|
| NotificationEvent::NotificationEvent(const AtomicString& type, const NotificationEventInit& initializer, WaitUntilObserver* observer)
|
| : ExtendableEvent(type, initializer, observer)
|
| , m_action(initializer.action())
|
| + , m_reply(initializer.reply())
|
| {
|
| if (initializer.hasNotification())
|
| m_notification = initializer.notification();
|
|
|