| Index: content/renderer/service_worker/service_worker_context_client.cc
|
| diff --git a/content/renderer/service_worker/service_worker_context_client.cc b/content/renderer/service_worker/service_worker_context_client.cc
|
| index 210bd3e154f0000e68da5c5c5f739bbcf81321a6..c840404783113ed14c29a5fef6f6f426af08b121 100644
|
| --- a/content/renderer/service_worker/service_worker_context_client.cc
|
| +++ b/content/renderer/service_worker/service_worker_context_client.cc
|
| @@ -914,12 +914,14 @@ void ServiceWorkerContextClient::OnNotificationClickEvent(
|
| int request_id,
|
| const std::string& notification_id,
|
| const PlatformNotificationData& notification_data,
|
| - int action_index) {
|
| + int action_index,
|
| + const base::NullableString16& reply) {
|
| TRACE_EVENT0("ServiceWorker",
|
| "ServiceWorkerContextClient::OnNotificationClickEvent");
|
| proxy_->dispatchNotificationClickEvent(
|
| request_id, blink::WebString::fromUTF8(notification_id),
|
| - ToWebNotificationData(notification_data), action_index);
|
| + ToWebNotificationData(notification_data), action_index,
|
| + blink::WebString(reply));
|
| }
|
|
|
| void ServiceWorkerContextClient::OnNotificationCloseEvent(
|
|
|