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

Side by Side Diff: content/common/service_worker/service_worker_messages.h

Issue 2218943002: Introduce ServiceWorker.EventDispatchingDelay UMA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: diff from https://codereview.chromium.org/2249063004/#ps40001 Created 4 years, 4 months 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 unified diff | Download patch
OLDNEW
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 // Message definition file, included multiple times, hence no include guard. 5 // Message definition file, included multiple times, hence no include guard.
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 int /* request_id */, 259 int /* request_id */,
260 blink::WebServiceWorkerEventResult, 260 blink::WebServiceWorkerEventResult,
261 bool /* has_fetch_event_handler */) 261 bool /* has_fetch_event_handler */)
262 262
263 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_ActivateEventFinished, 263 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_ActivateEventFinished,
264 int /* request_id */, 264 int /* request_id */,
265 blink::WebServiceWorkerEventResult) 265 blink::WebServiceWorkerEventResult)
266 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_ExtendableMessageEventFinished, 266 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_ExtendableMessageEventFinished,
267 int /* request_id */, 267 int /* request_id */,
268 blink::WebServiceWorkerEventResult) 268 blink::WebServiceWorkerEventResult)
269 IPC_MESSAGE_ROUTED3(ServiceWorkerHostMsg_FetchEventResponse, 269 IPC_MESSAGE_ROUTED4(ServiceWorkerHostMsg_FetchEventResponse,
270 int /* response_id */, 270 int /* response_id */,
271 content::ServiceWorkerFetchEventResult, 271 content::ServiceWorkerFetchEventResult,
272 content::ServiceWorkerResponse) 272 content::ServiceWorkerResponse,
273 base::Time /* dispatch_event_time */)
273 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_FetchEventFinished, 274 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_FetchEventFinished,
274 int /* event_finish_id */, 275 int /* event_finish_id */,
275 blink::WebServiceWorkerEventResult) 276 blink::WebServiceWorkerEventResult)
276 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_NotificationClickEventFinished, 277 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_NotificationClickEventFinished,
277 int /* request_id */, 278 int /* request_id */,
278 blink::WebServiceWorkerEventResult) 279 blink::WebServiceWorkerEventResult)
279 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_NotificationCloseEventFinished, 280 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_NotificationCloseEventFinished,
280 int /* request_id */, 281 int /* request_id */,
281 blink::WebServiceWorkerEventResult) 282 blink::WebServiceWorkerEventResult)
282 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_PushEventFinished, 283 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_PushEventFinished,
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 539
539 // Sent via EmbeddedWorker as a response of NavigateClient. 540 // Sent via EmbeddedWorker as a response of NavigateClient.
540 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse, 541 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse,
541 int /* request_id */, 542 int /* request_id */,
542 content::ServiceWorkerClientInfo /* client */) 543 content::ServiceWorkerClientInfo /* client */)
543 544
544 // Sent via EmbeddedWorker as an error response of NavigateClient. 545 // Sent via EmbeddedWorker as an error response of NavigateClient.
545 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError, 546 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError,
546 int /* request_id */, 547 int /* request_id */,
547 GURL /* url */) 548 GURL /* url */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698