| Index: third_party/WebKit/Source/modules/notifications/NotificationEvent.h
|
| diff --git a/third_party/WebKit/Source/modules/notifications/NotificationEvent.h b/third_party/WebKit/Source/modules/notifications/NotificationEvent.h
|
| index d454b127b9edc9c75fb75e72d32f521856c886a5..d651a20a96cf74d40e9031c4f81688edc8267d9d 100644
|
| --- a/third_party/WebKit/Source/modules/notifications/NotificationEvent.h
|
| +++ b/third_party/WebKit/Source/modules/notifications/NotificationEvent.h
|
| @@ -31,6 +31,7 @@ public:
|
|
|
| Notification* getNotification() const { return m_notification.get(); }
|
| String action() const { return m_action; }
|
| + String reply() const { return m_reply; }
|
|
|
| const AtomicString& interfaceName() const override;
|
|
|
| @@ -42,6 +43,7 @@ private:
|
|
|
| Member<Notification> m_notification;
|
| String m_action;
|
| + String m_reply;
|
| };
|
|
|
| } // namespace blink
|
|
|