| Index: content/browser/notifications/type_converters.cc
|
| diff --git a/content/browser/notifications/type_converters.cc b/content/browser/notifications/type_converters.cc
|
| index 823eaa16d6fa09fe584bead2a2f1a95c9920448d..7f44b65c2d3d303ed90331138513ba3d6e7e5f0c 100644
|
| --- a/content/browser/notifications/type_converters.cc
|
| +++ b/content/browser/notifications/type_converters.cc
|
| @@ -36,6 +36,7 @@ TypeConverter<PlatformNotificationData, blink::mojom::NotificationPtr>::Convert(
|
| notification_data.lang = notification->lang;
|
| notification_data.body = base::UTF8ToUTF16(notification->body.get());
|
| notification_data.tag = notification->tag;
|
| + notification_data.image = GURL(notification->image.get());
|
| notification_data.icon = GURL(notification->icon.get());
|
| notification_data.badge = GURL(notification->badge.get());
|
|
|
| @@ -98,6 +99,7 @@ TypeConverter<blink::mojom::NotificationPtr, PlatformNotificationData>::Convert(
|
| notification->lang = notification_data.lang;
|
| notification->body = base::UTF16ToUTF8(notification_data.body);
|
| notification->tag = notification_data.tag;
|
| + notification->image = notification_data.image.spec();
|
| notification->icon = notification_data.icon.spec();
|
| notification->badge = notification_data.badge.spec();
|
|
|
|
|