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

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

Issue 2684533002: [WIP] Mojofy respondwith
Patch Set: rebase Created 3 years, 8 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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 int /* handle_id */) 238 int /* handle_id */)
239 239
240 // Informs the browser that event handling has finished. 240 // Informs the browser that event handling has finished.
241 // Routed to the target ServiceWorkerVersion. 241 // Routed to the target ServiceWorkerVersion.
242 IPC_MESSAGE_ROUTED4(ServiceWorkerHostMsg_InstallEventFinished, 242 IPC_MESSAGE_ROUTED4(ServiceWorkerHostMsg_InstallEventFinished,
243 int /* request_id */, 243 int /* request_id */,
244 blink::WebServiceWorkerEventResult, 244 blink::WebServiceWorkerEventResult,
245 bool /* has_fetch_event_handler */, 245 bool /* has_fetch_event_handler */,
246 base::Time /* dispatch_event_time */) 246 base::Time /* dispatch_event_time */)
247 247
248 IPC_MESSAGE_ROUTED4(ServiceWorkerHostMsg_FetchEventResponse, 248 IPC_MESSAGE_ROUTED3(ServiceWorkerHostMsg_FetchEventResponse,
249 int /* fetch_event_id */, 249 int /* fetch_event_id */,
250 content::ServiceWorkerFetchEventResult,
251 content::ServiceWorkerResponse, 250 content::ServiceWorkerResponse,
252 base::Time /* dispatch_event_time */) 251 base::Time /* dispatch_event_time */)
253 252
254 // Asks the browser to retrieve client of the sender ServiceWorker. 253 // Asks the browser to retrieve client of the sender ServiceWorker.
255 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_GetClient, 254 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_GetClient,
256 int /* request_id */, 255 int /* request_id */,
257 std::string /* client_uuid */) 256 std::string /* client_uuid */)
258 257
259 // Asks the browser to retrieve clients of the sender ServiceWorker. 258 // Asks the browser to retrieve clients of the sender ServiceWorker.
260 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_GetClients, 259 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_GetClients,
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
513 512
514 // Sent via EmbeddedWorker as a response of NavigateClient. 513 // Sent via EmbeddedWorker as a response of NavigateClient.
515 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse, 514 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse,
516 int /* request_id */, 515 int /* request_id */,
517 content::ServiceWorkerClientInfo /* client */) 516 content::ServiceWorkerClientInfo /* client */)
518 517
519 // Sent via EmbeddedWorker as an error response of NavigateClient. 518 // Sent via EmbeddedWorker as an error response of NavigateClient.
520 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError, 519 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError,
521 int /* request_id */, 520 int /* request_id */,
522 GURL /* url */) 521 GURL /* url */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698