| Index: third_party/WebKit/Source/modules/notifications/Notification.cpp
|
| diff --git a/third_party/WebKit/Source/modules/notifications/Notification.cpp b/third_party/WebKit/Source/modules/notifications/Notification.cpp
|
| index b22dbe35e0c097b5e488e2907c847854f46bf788..b15fabe239ed91be1a3f1dd09ad2c21b7397e4cb 100644
|
| --- a/third_party/WebKit/Source/modules/notifications/Notification.cpp
|
| +++ b/third_party/WebKit/Source/modules/notifications/Notification.cpp
|
| @@ -302,9 +302,11 @@ HeapVector<NotificationAction> Notification::actions() const
|
| actions.grow(m_data.actions.size());
|
|
|
| for (size_t i = 0; i < m_data.actions.size(); ++i) {
|
| + actions[i].setType(m_data.actions[i].type);
|
| actions[i].setAction(m_data.actions[i].action);
|
| actions[i].setTitle(m_data.actions[i].title);
|
| actions[i].setIcon(m_data.actions[i].icon.string());
|
| + actions[i].setPlaceholder(m_data.actions[i].placeholder);
|
| }
|
|
|
| return actions;
|
|
|