| 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 // 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 <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 int /* request_id */) | 377 int /* request_id */) |
| 378 IPC_MESSAGE_CONTROL1(ServiceWorkerMsg_ActivateEvent, | 378 IPC_MESSAGE_CONTROL1(ServiceWorkerMsg_ActivateEvent, |
| 379 int /* request_id */) | 379 int /* request_id */) |
| 380 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_FetchEvent, | 380 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_FetchEvent, |
| 381 int /* request_id */, | 381 int /* request_id */, |
| 382 content::ServiceWorkerFetchRequest) | 382 content::ServiceWorkerFetchRequest) |
| 383 IPC_MESSAGE_CONTROL1(ServiceWorkerMsg_SyncEvent, | 383 IPC_MESSAGE_CONTROL1(ServiceWorkerMsg_SyncEvent, |
| 384 int /* request_id */) | 384 int /* request_id */) |
| 385 IPC_MESSAGE_CONTROL3(ServiceWorkerMsg_NotificationClickEvent, | 385 IPC_MESSAGE_CONTROL3(ServiceWorkerMsg_NotificationClickEvent, |
| 386 int /* request_id */, | 386 int /* request_id */, |
| 387 std::string /* notification_id */, | 387 int64_t /* persistent_notification_id */, |
| 388 content::PlatformNotificationData /* notification_data */) | 388 content::PlatformNotificationData /* notification_data */) |
| 389 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_PushEvent, | 389 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_PushEvent, |
| 390 int /* request_id */, | 390 int /* request_id */, |
| 391 std::string /* data */) | 391 std::string /* data */) |
| 392 IPC_MESSAGE_CONTROL4(ServiceWorkerMsg_GeofencingEvent, | 392 IPC_MESSAGE_CONTROL4(ServiceWorkerMsg_GeofencingEvent, |
| 393 int /* request_id */, | 393 int /* request_id */, |
| 394 blink::WebGeofencingEventType /* event_type */, | 394 blink::WebGeofencingEventType /* event_type */, |
| 395 std::string /* region_id */, | 395 std::string /* region_id */, |
| 396 blink::WebCircularGeofencingRegion /* region */) | 396 blink::WebCircularGeofencingRegion /* region */) |
| 397 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CrossOriginConnectEvent, | 397 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CrossOriginConnectEvent, |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 | 432 |
| 433 // Sent via EmbeddedWorker as an error response of OpenWindow. | 433 // Sent via EmbeddedWorker as an error response of OpenWindow. |
| 434 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_OpenWindowError, | 434 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_OpenWindowError, |
| 435 int /* request_id */, | 435 int /* request_id */, |
| 436 std::string /* message */ ) | 436 std::string /* message */ ) |
| 437 | 437 |
| 438 // Sent via EmbeddedWorker as a response of FocusClient. | 438 // Sent via EmbeddedWorker as a response of FocusClient. |
| 439 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_FocusClientResponse, | 439 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_FocusClientResponse, |
| 440 int /* request_id */, | 440 int /* request_id */, |
| 441 content::ServiceWorkerClientInfo /* client */) | 441 content::ServiceWorkerClientInfo /* client */) |
| OLD | NEW |