Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1076)

Unified Diff: content/browser/service_worker/service_worker_version.cc

Issue 728763003: Introduce a //content/ API for dispatching notificationclick events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/service_worker/service_worker_version.cc
diff --git a/content/browser/service_worker/service_worker_version.cc b/content/browser/service_worker/service_worker_version.cc
index f1760a0741437c088db3e0d90cc8fa1a4dc623a2..5ad3c4ebac6480802c534e30ae416c07e893bb38 100644
--- a/content/browser/service_worker/service_worker_version.cc
+++ b/content/browser/service_worker/service_worker_version.cc
@@ -396,7 +396,8 @@ void ServiceWorkerVersion::DispatchSyncEvent(const StatusCallback& callback) {
void ServiceWorkerVersion::DispatchNotificationClickEvent(
const StatusCallback& callback,
- const std::string& notification_id) {
+ const std::string& notification_id,
+ const ShowDesktopNotificationHostMsgParams& notification_data) {
DCHECK_EQ(ACTIVATED, status()) << status();
if (!CommandLine::ForCurrentProcess()->HasSwitch(
@@ -411,14 +412,17 @@ void ServiceWorkerVersion::DispatchNotificationClickEvent(
weak_factory_.GetWeakPtr(), callback,
base::Bind(&self::DispatchNotificationClickEvent,
weak_factory_.GetWeakPtr(),
- callback, notification_id)));
+ callback, notification_id,
+ notification_data)));
return;
}
int request_id =
notification_click_callbacks_.Add(new StatusCallback(callback));
ServiceWorkerStatusCode status = embedded_worker_->SendMessage(
- ServiceWorkerMsg_NotificationClickEvent(request_id, notification_id));
+ ServiceWorkerMsg_NotificationClickEvent(request_id,
+ notification_id,
+ notification_data));
if (status != SERVICE_WORKER_OK) {
notification_click_callbacks_.Remove(request_id);
RunSoon(base::Bind(callback, status));
« no previous file with comments | « content/browser/service_worker/service_worker_version.h ('k') | content/common/service_worker/service_worker_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698