| 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" |
| 11 #include "content/common/service_worker/service_worker_status_code.h" | 11 #include "content/common/service_worker/service_worker_status_code.h" |
| 12 #include "content/common/service_worker/service_worker_types.h" | 12 #include "content/common/service_worker/service_worker_types.h" |
| 13 #include "content/public/common/show_desktop_notification_params.h" | 13 #include "content/public/common/platform_notification_data.h" |
| 14 #include "ipc/ipc_message_macros.h" | 14 #include "ipc/ipc_message_macros.h" |
| 15 #include "ipc/ipc_param_traits.h" | 15 #include "ipc/ipc_param_traits.h" |
| 16 #include "third_party/WebKit/public/platform/WebCircularGeofencingRegion.h" | 16 #include "third_party/WebKit/public/platform/WebCircularGeofencingRegion.h" |
| 17 #include "third_party/WebKit/public/platform/WebGeofencingEventType.h" | 17 #include "third_party/WebKit/public/platform/WebGeofencingEventType.h" |
| 18 #include "third_party/WebKit/public/platform/WebServiceWorkerCacheError.h" | 18 #include "third_party/WebKit/public/platform/WebServiceWorkerCacheError.h" |
| 19 #include "third_party/WebKit/public/platform/WebServiceWorkerError.h" | 19 #include "third_party/WebKit/public/platform/WebServiceWorkerError.h" |
| 20 #include "third_party/WebKit/public/platform/WebServiceWorkerEventResult.h" | 20 #include "third_party/WebKit/public/platform/WebServiceWorkerEventResult.h" |
| 21 #include "url/gurl.h" | 21 #include "url/gurl.h" |
| 22 | 22 |
| 23 #undef IPC_MESSAGE_EXPORT | 23 #undef IPC_MESSAGE_EXPORT |
| (...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 IPC_MESSAGE_CONTROL1(ServiceWorkerMsg_ActivateEvent, | 401 IPC_MESSAGE_CONTROL1(ServiceWorkerMsg_ActivateEvent, |
| 402 int /* request_id */) | 402 int /* request_id */) |
| 403 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_FetchEvent, | 403 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_FetchEvent, |
| 404 int /* request_id */, | 404 int /* request_id */, |
| 405 content::ServiceWorkerFetchRequest) | 405 content::ServiceWorkerFetchRequest) |
| 406 IPC_MESSAGE_CONTROL1(ServiceWorkerMsg_SyncEvent, | 406 IPC_MESSAGE_CONTROL1(ServiceWorkerMsg_SyncEvent, |
| 407 int /* request_id */) | 407 int /* request_id */) |
| 408 IPC_MESSAGE_CONTROL3(ServiceWorkerMsg_NotificationClickEvent, | 408 IPC_MESSAGE_CONTROL3(ServiceWorkerMsg_NotificationClickEvent, |
| 409 int /* request_id */, | 409 int /* request_id */, |
| 410 std::string /* notification_id */, | 410 std::string /* notification_id */, |
| 411 content::ShowDesktopNotificationHostMsgParams) | 411 content::PlatformNotificationData /* notification_data */) |
| 412 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_PushEvent, | 412 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_PushEvent, |
| 413 int /* request_id */, | 413 int /* request_id */, |
| 414 std::string /* data */) | 414 std::string /* data */) |
| 415 IPC_MESSAGE_CONTROL4(ServiceWorkerMsg_GeofencingEvent, | 415 IPC_MESSAGE_CONTROL4(ServiceWorkerMsg_GeofencingEvent, |
| 416 int /* request_id */, | 416 int /* request_id */, |
| 417 blink::WebGeofencingEventType /* event_type */, | 417 blink::WebGeofencingEventType /* event_type */, |
| 418 std::string /* region_id */, | 418 std::string /* region_id */, |
| 419 blink::WebCircularGeofencingRegion /* region */) | 419 blink::WebCircularGeofencingRegion /* region */) |
| 420 IPC_MESSAGE_CONTROL3(ServiceWorkerMsg_MessageToWorker, | 420 IPC_MESSAGE_CONTROL3(ServiceWorkerMsg_MessageToWorker, |
| 421 base::string16 /* message */, | 421 base::string16 /* message */, |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 blink::WebServiceWorkerCacheError) | 486 blink::WebServiceWorkerCacheError) |
| 487 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheMatchAllError, | 487 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheMatchAllError, |
| 488 int /* request_id */, | 488 int /* request_id */, |
| 489 blink::WebServiceWorkerCacheError) | 489 blink::WebServiceWorkerCacheError) |
| 490 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheKeysError, | 490 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheKeysError, |
| 491 int /* request_id */, | 491 int /* request_id */, |
| 492 blink::WebServiceWorkerCacheError) | 492 blink::WebServiceWorkerCacheError) |
| 493 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheBatchError, | 493 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheBatchError, |
| 494 int /* request_id */, | 494 int /* request_id */, |
| 495 blink::WebServiceWorkerCacheError) | 495 blink::WebServiceWorkerCacheError) |
| OLD | NEW |