Index: Source/modules/notifications/NotificationEvent.h |
diff --git a/Source/modules/notifications/NotificationEvent.h b/Source/modules/notifications/NotificationEvent.h |
index e20c4f4db4827b1e1bd1eadd1fe7f990434d3cf7..210a943ee75632bf8ad78c969f166c0545f52dff 100644 |
--- a/Source/modules/notifications/NotificationEvent.h |
+++ b/Source/modules/notifications/NotificationEvent.h |
@@ -33,6 +33,7 @@ public: |
~NotificationEvent() override; |
Notification* notification() const { return m_notification.get(); } |
+ String action() const { return m_action; } |
const AtomicString& interfaceName() const override; |
@@ -44,6 +45,7 @@ private: |
NotificationEvent(const AtomicString& type, const NotificationEventInit&, WaitUntilObserver*); |
PersistentWillBeMember<Notification> m_notification; |
+ String m_action; |
}; |
} // namespace blink |