Index: public/platform/modules/notifications/WebNotificationAction.h |
diff --git a/public/platform/modules/notifications/WebNotificationAction.h b/public/platform/modules/notifications/WebNotificationAction.h |
index 7c0e6fe48a0f6c382b650aa37e726077ac5d1f89..e2f617460739f33706cf678f034e31aaa80764ef 100644 |
--- a/public/platform/modules/notifications/WebNotificationAction.h |
+++ b/public/platform/modules/notifications/WebNotificationAction.h |
@@ -15,11 +15,13 @@ struct WebNotificationAction { |
WebNotificationAction(const WebNotificationAction&) = default; |
- WebNotificationAction(const WebString& title) |
- : title(title) |
+ WebNotificationAction(const WebString& action, const WebString& title) |
+ : action(action) |
+ , title(title) |
{ |
} |
+ WebString action; |
WebString title; |
}; |