Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(942)

Unified Diff: third_party/WebKit/Source/modules/notifications/NotificationEvent.h

Issue 2380273002: Added reply field to blink NotificationEvent (not yet piped through) (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698