| 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 <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 IPC_STRUCT_TRAITS_MEMBER(status_text) | 83 IPC_STRUCT_TRAITS_MEMBER(status_text) |
| 84 IPC_STRUCT_TRAITS_MEMBER(response_type) | 84 IPC_STRUCT_TRAITS_MEMBER(response_type) |
| 85 IPC_STRUCT_TRAITS_MEMBER(headers) | 85 IPC_STRUCT_TRAITS_MEMBER(headers) |
| 86 IPC_STRUCT_TRAITS_MEMBER(blob_uuid) | 86 IPC_STRUCT_TRAITS_MEMBER(blob_uuid) |
| 87 IPC_STRUCT_TRAITS_MEMBER(blob_size) | 87 IPC_STRUCT_TRAITS_MEMBER(blob_size) |
| 88 IPC_STRUCT_TRAITS_MEMBER(stream_url) | 88 IPC_STRUCT_TRAITS_MEMBER(stream_url) |
| 89 IPC_STRUCT_TRAITS_MEMBER(error) | 89 IPC_STRUCT_TRAITS_MEMBER(error) |
| 90 IPC_STRUCT_TRAITS_MEMBER(response_time) | 90 IPC_STRUCT_TRAITS_MEMBER(response_time) |
| 91 IPC_STRUCT_TRAITS_MEMBER(is_in_cache_storage) | 91 IPC_STRUCT_TRAITS_MEMBER(is_in_cache_storage) |
| 92 IPC_STRUCT_TRAITS_MEMBER(cache_storage_cache_name) | 92 IPC_STRUCT_TRAITS_MEMBER(cache_storage_cache_name) |
| 93 IPC_STRUCT_TRAITS_MEMBER(cors_exposed_header_names) |
| 93 IPC_STRUCT_TRAITS_END() | 94 IPC_STRUCT_TRAITS_END() |
| 94 | 95 |
| 95 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerObjectInfo) | 96 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerObjectInfo) |
| 96 IPC_STRUCT_TRAITS_MEMBER(handle_id) | 97 IPC_STRUCT_TRAITS_MEMBER(handle_id) |
| 97 IPC_STRUCT_TRAITS_MEMBER(url) | 98 IPC_STRUCT_TRAITS_MEMBER(url) |
| 98 IPC_STRUCT_TRAITS_MEMBER(state) | 99 IPC_STRUCT_TRAITS_MEMBER(state) |
| 99 IPC_STRUCT_TRAITS_MEMBER(version_id) | 100 IPC_STRUCT_TRAITS_MEMBER(version_id) |
| 100 IPC_STRUCT_TRAITS_END() | 101 IPC_STRUCT_TRAITS_END() |
| 101 | 102 |
| 102 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerRegistrationObjectInfo) | 103 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerRegistrationObjectInfo) |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 518 | 519 |
| 519 // Sent via EmbeddedWorker as a response of NavigateClient. | 520 // Sent via EmbeddedWorker as a response of NavigateClient. |
| 520 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse, | 521 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse, |
| 521 int /* request_id */, | 522 int /* request_id */, |
| 522 content::ServiceWorkerClientInfo /* client */) | 523 content::ServiceWorkerClientInfo /* client */) |
| 523 | 524 |
| 524 // Sent via EmbeddedWorker as an error response of NavigateClient. | 525 // Sent via EmbeddedWorker as an error response of NavigateClient. |
| 525 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError, | 526 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError, |
| 526 int /* request_id */, | 527 int /* request_id */, |
| 527 GURL /* url */) | 528 GURL /* url */) |
| OLD | NEW |