| 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 be2c4e2823ca8ff3eedf37d894f557a2f354c43c..d24f88e34645ddb708bfdf26bac7fab581d78619 100644
|
| --- a/third_party/WebKit/Source/modules/notifications/Notification.cpp
|
| +++ b/third_party/WebKit/Source/modules/notifications/Notification.cpp
|
| @@ -293,6 +293,7 @@ HeapVector<NotificationAction> Notification::actions() const
|
| for (size_t i = 0; i < m_data.actions.size(); ++i) {
|
| 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());
|
| }
|
|
|
| return actions;
|
|
|