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

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

Issue 2654663004: [Not for review] record detailed time breakdown of SW related requests.
Patch Set: add stream uma Created 3 years, 10 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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 IPC_MESSAGE_ROUTED4(ServiceWorkerHostMsg_InstallEventFinished, 279 IPC_MESSAGE_ROUTED4(ServiceWorkerHostMsg_InstallEventFinished,
280 int /* request_id */, 280 int /* request_id */,
281 blink::WebServiceWorkerEventResult, 281 blink::WebServiceWorkerEventResult,
282 bool /* has_fetch_event_handler */, 282 bool /* has_fetch_event_handler */,
283 base::Time /* dispatch_event_time */) 283 base::Time /* dispatch_event_time */)
284 284
285 IPC_MESSAGE_ROUTED3(ServiceWorkerHostMsg_ActivateEventFinished, 285 IPC_MESSAGE_ROUTED3(ServiceWorkerHostMsg_ActivateEventFinished,
286 int /* request_id */, 286 int /* request_id */,
287 blink::WebServiceWorkerEventResult, 287 blink::WebServiceWorkerEventResult,
288 base::Time /* dispatch_event_time */) 288 base::Time /* dispatch_event_time */)
289 IPC_MESSAGE_ROUTED4(ServiceWorkerHostMsg_FetchEventResponse, 289 IPC_MESSAGE_ROUTED5(ServiceWorkerHostMsg_FetchEventResponse,
290 int /* fetch_event_id */, 290 int /* fetch_event_id */,
291 content::ServiceWorkerFetchEventResult, 291 content::ServiceWorkerFetchEventResult,
292 content::ServiceWorkerResponse, 292 content::ServiceWorkerResponse,
293 base::Time /* dispatch_event_time */) 293 base::Time /* dispatch_event_time */,
294 base::TimeTicks /* response_time */)
294 IPC_MESSAGE_ROUTED3(ServiceWorkerHostMsg_NotificationClickEventFinished, 295 IPC_MESSAGE_ROUTED3(ServiceWorkerHostMsg_NotificationClickEventFinished,
295 int /* request_id */, 296 int /* request_id */,
296 blink::WebServiceWorkerEventResult, 297 blink::WebServiceWorkerEventResult,
297 base::Time /* dispatch_event_time */) 298 base::Time /* dispatch_event_time */)
298 IPC_MESSAGE_ROUTED3(ServiceWorkerHostMsg_NotificationCloseEventFinished, 299 IPC_MESSAGE_ROUTED3(ServiceWorkerHostMsg_NotificationCloseEventFinished,
299 int /* request_id */, 300 int /* request_id */,
300 blink::WebServiceWorkerEventResult, 301 blink::WebServiceWorkerEventResult,
301 base::Time /* dispatch_event_time */) 302 base::Time /* dispatch_event_time */)
302 303
303 // Responds to a Ping from the browser. 304 // Responds to a Ping from the browser.
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
572 573
573 // Sent via EmbeddedWorker as a response of NavigateClient. 574 // Sent via EmbeddedWorker as a response of NavigateClient.
574 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse, 575 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse,
575 int /* request_id */, 576 int /* request_id */,
576 content::ServiceWorkerClientInfo /* client */) 577 content::ServiceWorkerClientInfo /* client */)
577 578
578 // Sent via EmbeddedWorker as an error response of NavigateClient. 579 // Sent via EmbeddedWorker as an error response of NavigateClient.
579 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError, 580 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError,
580 int /* request_id */, 581 int /* request_id */,
581 GURL /* url */) 582 GURL /* url */)
OLDNEW
« no previous file with comments | « content/common/service_worker/service_worker_event_dispatcher.mojom ('k') | content/public/common/resource_response_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698