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

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

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.h
diff --git a/content/browser/service_worker/service_worker_version.h b/content/browser/service_worker/service_worker_version.h
index 7f6f74900370982846209114b62bd8df8375995f..c41e7777187355b97895f55ab7ad7dc11ac58cc6 100644
--- a/content/browser/service_worker/service_worker_version.h
+++ b/content/browser/service_worker/service_worker_version.h
@@ -39,6 +39,7 @@ class ServiceWorkerContextCore;
class ServiceWorkerProviderHost;
class ServiceWorkerRegistration;
class ServiceWorkerVersionInfo;
+struct ShowDesktopNotificationHostMsgParams;
// This class corresponds to a specific version of a ServiceWorker
// script for a given pattern. When a script is upgraded, there may be
@@ -204,8 +205,10 @@ class CONTENT_EXPORT ServiceWorkerVersion
// from the worker to notify completion.
//
// This must be called when the status() is ACTIVATED.
- void DispatchNotificationClickEvent(const StatusCallback& callback,
- const std::string& notification_id);
+ void DispatchNotificationClickEvent(
+ const StatusCallback& callback,
+ const std::string& notification_id,
+ const ShowDesktopNotificationHostMsgParams& notification_data);
// Sends push event to the associated embedded worker and asynchronously calls
// |callback| when it errors out or it gets a response from the worker to

Powered by Google App Engine
This is Rietveld 408576698