OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/renderer/service_worker/service_worker_script_context.h" | 5 #include "content/renderer/service_worker/service_worker_script_context.h" |
6 | 6 |
7 #include "base/debug/trace_event.h" | 7 #include "base/debug/trace_event.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/metrics/histogram.h" | 9 #include "base/metrics/histogram.h" |
10 #include "content/child/thread_safe_sender.h" | 10 #include "content/child/thread_safe_sender.h" |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 ServiceWorkerScriptContext::~ServiceWorkerScriptContext() {} | 70 ServiceWorkerScriptContext::~ServiceWorkerScriptContext() {} |
71 | 71 |
72 void ServiceWorkerScriptContext::OnMessageReceived( | 72 void ServiceWorkerScriptContext::OnMessageReceived( |
73 const IPC::Message& message) { | 73 const IPC::Message& message) { |
74 bool handled = true; | 74 bool handled = true; |
75 IPC_BEGIN_MESSAGE_MAP(ServiceWorkerScriptContext, message) | 75 IPC_BEGIN_MESSAGE_MAP(ServiceWorkerScriptContext, message) |
76 IPC_MESSAGE_HANDLER(ServiceWorkerMsg_ActivateEvent, OnActivateEvent) | 76 IPC_MESSAGE_HANDLER(ServiceWorkerMsg_ActivateEvent, OnActivateEvent) |
77 IPC_MESSAGE_HANDLER(ServiceWorkerMsg_FetchEvent, OnFetchEvent) | 77 IPC_MESSAGE_HANDLER(ServiceWorkerMsg_FetchEvent, OnFetchEvent) |
78 IPC_MESSAGE_HANDLER(ServiceWorkerMsg_InstallEvent, OnInstallEvent) | 78 IPC_MESSAGE_HANDLER(ServiceWorkerMsg_InstallEvent, OnInstallEvent) |
79 IPC_MESSAGE_HANDLER(ServiceWorkerMsg_SyncEvent, OnSyncEvent) | 79 IPC_MESSAGE_HANDLER(ServiceWorkerMsg_SyncEvent, OnSyncEvent) |
| 80 IPC_MESSAGE_HANDLER(ServiceWorkerMsg_NotificationClickEvent, |
| 81 OnNotificationClickEvent) |
80 IPC_MESSAGE_HANDLER(ServiceWorkerMsg_PushEvent, OnPushEvent) | 82 IPC_MESSAGE_HANDLER(ServiceWorkerMsg_PushEvent, OnPushEvent) |
81 IPC_MESSAGE_HANDLER(ServiceWorkerMsg_GeofencingEvent, OnGeofencingEvent) | 83 IPC_MESSAGE_HANDLER(ServiceWorkerMsg_GeofencingEvent, OnGeofencingEvent) |
82 IPC_MESSAGE_HANDLER(ServiceWorkerMsg_MessageToWorker, OnPostMessage) | 84 IPC_MESSAGE_HANDLER(ServiceWorkerMsg_MessageToWorker, OnPostMessage) |
83 IPC_MESSAGE_HANDLER(ServiceWorkerMsg_DidGetClientDocuments, | 85 IPC_MESSAGE_HANDLER(ServiceWorkerMsg_DidGetClientDocuments, |
84 OnDidGetClientDocuments) | 86 OnDidGetClientDocuments) |
85 IPC_MESSAGE_HANDLER(ServiceWorkerMsg_FocusClientResponse, | 87 IPC_MESSAGE_HANDLER(ServiceWorkerMsg_FocusClientResponse, |
86 OnFocusClientResponse) | 88 OnFocusClientResponse) |
87 IPC_MESSAGE_UNHANDLED(handled = false) | 89 IPC_MESSAGE_UNHANDLED(handled = false) |
88 IPC_END_MESSAGE_MAP() | 90 IPC_END_MESSAGE_MAP() |
89 | 91 |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 proxy_->dispatchFetchEvent(request_id, webRequest); | 250 proxy_->dispatchFetchEvent(request_id, webRequest); |
249 } | 251 } |
250 | 252 |
251 void ServiceWorkerScriptContext::OnSyncEvent(int request_id) { | 253 void ServiceWorkerScriptContext::OnSyncEvent(int request_id) { |
252 TRACE_EVENT0("ServiceWorker", | 254 TRACE_EVENT0("ServiceWorker", |
253 "ServiceWorkerScriptContext::OnSyncEvent"); | 255 "ServiceWorkerScriptContext::OnSyncEvent"); |
254 proxy_->dispatchSyncEvent(request_id); | 256 proxy_->dispatchSyncEvent(request_id); |
255 } | 257 } |
256 | 258 |
257 void ServiceWorkerScriptContext::OnNotificationClickEvent( | 259 void ServiceWorkerScriptContext::OnNotificationClickEvent( |
258 int request_id, const std::string& notification_id) { | 260 int request_id, |
| 261 const std::string& notification_id, |
| 262 const ShowDesktopNotificationHostMsgParams& notification_data) { |
259 TRACE_EVENT0("ServiceWorker", | 263 TRACE_EVENT0("ServiceWorker", |
260 "ServiceWorkerScriptContext::OnNotificationClickEvent"); | 264 "ServiceWorkerScriptContext::OnNotificationClickEvent"); |
261 notification_click_start_timings_[request_id] = base::TimeTicks::Now(); | 265 notification_click_start_timings_[request_id] = base::TimeTicks::Now(); |
262 | 266 |
263 blink::WebNotificationData notification; | 267 // TODO(peter): Set the appropriate direction once it's been plumbed through. |
264 // TODO(peter): Initialize |notification| with the actual contents. | 268 // TODO(peter): Store the notification's language and icon URL in the struct. |
| 269 blink::WebNotificationData notification( |
| 270 blink::WebString(notification_data.title), |
| 271 blink::WebNotificationData::DirectionLeftToRight, |
| 272 blink::WebString() /* lang */, |
| 273 blink::WebString(notification_data.body), |
| 274 blink::WebString(notification_data.replace_id), |
| 275 blink::WebURL() /* icon_url */); |
265 | 276 |
266 proxy_->dispatchNotificationClickEvent( | 277 proxy_->dispatchNotificationClickEvent( |
267 request_id, | 278 request_id, |
268 blink::WebString::fromUTF8(notification_id), | 279 blink::WebString::fromUTF8(notification_id), |
269 notification); | 280 notification); |
270 } | 281 } |
271 | 282 |
272 void ServiceWorkerScriptContext::OnPushEvent(int request_id, | 283 void ServiceWorkerScriptContext::OnPushEvent(int request_id, |
273 const std::string& data) { | 284 const std::string& data) { |
274 TRACE_EVENT0("ServiceWorker", | 285 TRACE_EVENT0("ServiceWorker", |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 pending_focus_client_callbacks_.Lookup(request_id); | 351 pending_focus_client_callbacks_.Lookup(request_id); |
341 if (!callback) { | 352 if (!callback) { |
342 NOTREACHED() << "Got stray response: " << request_id; | 353 NOTREACHED() << "Got stray response: " << request_id; |
343 return; | 354 return; |
344 } | 355 } |
345 callback->onSuccess(&result); | 356 callback->onSuccess(&result); |
346 pending_focus_client_callbacks_.Remove(request_id); | 357 pending_focus_client_callbacks_.Remove(request_id); |
347 } | 358 } |
348 | 359 |
349 } // namespace content | 360 } // namespace content |
OLD | NEW |