| Index: content/child/notifications/notification_data_conversions.cc
|
| diff --git a/content/child/notifications/notification_data_conversions.cc b/content/child/notifications/notification_data_conversions.cc
|
| index 0c4d93911c82fa34727c1ee1fe0b1cbac8fb6ea0..2774a0188a6bd6e4b1b3910e15239423db85319e 100644
|
| --- a/content/child/notifications/notification_data_conversions.cc
|
| +++ b/content/child/notifications/notification_data_conversions.cc
|
| @@ -45,6 +45,7 @@ PlatformNotificationData ToPlatformNotificationData(
|
| web_data.vibrate.end());
|
| platform_data.timestamp = base::Time::FromJsTime(web_data.timestamp);
|
| platform_data.silent = web_data.silent;
|
| + platform_data.renotify = web_data.renotify;
|
| platform_data.require_interaction = web_data.requireInteraction;
|
| platform_data.data.assign(web_data.data.begin(), web_data.data.end());
|
| platform_data.actions.resize(web_data.actions.size());
|
| @@ -81,6 +82,7 @@ WebNotificationData ToWebNotificationData(
|
| web_data.vibrate = platform_data.vibration_pattern;
|
| web_data.timestamp = platform_data.timestamp.ToJsTime();
|
| web_data.silent = platform_data.silent;
|
| + web_data.renotify = platform_data.renotify;
|
| web_data.requireInteraction = platform_data.require_interaction;
|
| web_data.data = platform_data.data;
|
| blink::WebVector<blink::WebNotificationAction> resized(
|
|
|