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

Unified Diff: content/renderer/service_worker/service_worker_script_context.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
« no previous file with comments | « content/renderer/service_worker/service_worker_script_context.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/service_worker/service_worker_script_context.cc
diff --git a/content/renderer/service_worker/service_worker_script_context.cc b/content/renderer/service_worker/service_worker_script_context.cc
index 19c6e12d346ba7a11cb4aa71e44d98218a20c25a..5ef399d11e6ac6719006ae2d8c6986bf4ee4cfab 100644
--- a/content/renderer/service_worker/service_worker_script_context.cc
+++ b/content/renderer/service_worker/service_worker_script_context.cc
@@ -77,6 +77,8 @@ void ServiceWorkerScriptContext::OnMessageReceived(
IPC_MESSAGE_HANDLER(ServiceWorkerMsg_FetchEvent, OnFetchEvent)
IPC_MESSAGE_HANDLER(ServiceWorkerMsg_InstallEvent, OnInstallEvent)
IPC_MESSAGE_HANDLER(ServiceWorkerMsg_SyncEvent, OnSyncEvent)
+ IPC_MESSAGE_HANDLER(ServiceWorkerMsg_NotificationClickEvent,
+ OnNotificationClickEvent)
IPC_MESSAGE_HANDLER(ServiceWorkerMsg_PushEvent, OnPushEvent)
IPC_MESSAGE_HANDLER(ServiceWorkerMsg_GeofencingEvent, OnGeofencingEvent)
IPC_MESSAGE_HANDLER(ServiceWorkerMsg_MessageToWorker, OnPostMessage)
@@ -255,13 +257,22 @@ void ServiceWorkerScriptContext::OnSyncEvent(int request_id) {
}
void ServiceWorkerScriptContext::OnNotificationClickEvent(
- int request_id, const std::string& notification_id) {
+ int request_id,
+ const std::string& notification_id,
+ const ShowDesktopNotificationHostMsgParams& notification_data) {
TRACE_EVENT0("ServiceWorker",
"ServiceWorkerScriptContext::OnNotificationClickEvent");
notification_click_start_timings_[request_id] = base::TimeTicks::Now();
- blink::WebNotificationData notification;
- // TODO(peter): Initialize |notification| with the actual contents.
+ // TODO(peter): Set the appropriate direction once it's been plumbed through.
+ // TODO(peter): Store the notification's language and icon URL in the struct.
+ blink::WebNotificationData notification(
+ blink::WebString(notification_data.title),
+ blink::WebNotificationData::DirectionLeftToRight,
+ blink::WebString() /* lang */,
+ blink::WebString(notification_data.body),
+ blink::WebString(notification_data.replace_id),
+ blink::WebURL() /* icon_url */);
proxy_->dispatchNotificationClickEvent(
request_id,
« no previous file with comments | « content/renderer/service_worker/service_worker_script_context.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698