| Index: third_party/WebKit/public/platform/modules/notifications/WebNotificationAction.h
|
| diff --git a/third_party/WebKit/public/platform/modules/notifications/WebNotificationAction.h b/third_party/WebKit/public/platform/modules/notifications/WebNotificationAction.h
|
| index 3a2026d588b9503a4eb3b36da1187ef2a0510f5b..c42b47d1384e4cf656f8ac6b4cc11679dcef5239 100644
|
| --- a/third_party/WebKit/public/platform/modules/notifications/WebNotificationAction.h
|
| +++ b/third_party/WebKit/public/platform/modules/notifications/WebNotificationAction.h
|
| @@ -6,23 +6,15 @@
|
| #define WebNotificationAction_h
|
|
|
| #include "public/platform/WebString.h"
|
| +#include "public/platform/WebURL.h"
|
|
|
| namespace blink {
|
|
|
| // Structure representing the data associated with a Web Notification action.
|
| struct WebNotificationAction {
|
| - // Empty and copy constructor only for WebVector.
|
| - WebNotificationAction() = default;
|
| - WebNotificationAction(const WebNotificationAction&) = default;
|
| -
|
| - WebNotificationAction(const WebString& action, const WebString& title)
|
| - : action(action)
|
| - , title(title)
|
| - {
|
| - }
|
| -
|
| WebString action;
|
| WebString title;
|
| + WebURL icon;
|
| };
|
|
|
| } // namespace blink
|
|
|