| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 IPC_STRUCT_TRAITS_MEMBER(redirect_mode) | 77 IPC_STRUCT_TRAITS_MEMBER(redirect_mode) |
| 78 IPC_STRUCT_TRAITS_MEMBER(client_id) | 78 IPC_STRUCT_TRAITS_MEMBER(client_id) |
| 79 IPC_STRUCT_TRAITS_MEMBER(is_reload) | 79 IPC_STRUCT_TRAITS_MEMBER(is_reload) |
| 80 IPC_STRUCT_TRAITS_MEMBER(fetch_type) | 80 IPC_STRUCT_TRAITS_MEMBER(fetch_type) |
| 81 IPC_STRUCT_TRAITS_END() | 81 IPC_STRUCT_TRAITS_END() |
| 82 | 82 |
| 83 IPC_ENUM_TRAITS_MAX_VALUE(content::ServiceWorkerFetchEventResult, | 83 IPC_ENUM_TRAITS_MAX_VALUE(content::ServiceWorkerFetchEventResult, |
| 84 content::SERVICE_WORKER_FETCH_EVENT_LAST) | 84 content::SERVICE_WORKER_FETCH_EVENT_LAST) |
| 85 | 85 |
| 86 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerResponse) | 86 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerResponse) |
| 87 IPC_STRUCT_TRAITS_MEMBER(url) | 87 IPC_STRUCT_TRAITS_MEMBER(url_list) |
| 88 IPC_STRUCT_TRAITS_MEMBER(status_code) | 88 IPC_STRUCT_TRAITS_MEMBER(status_code) |
| 89 IPC_STRUCT_TRAITS_MEMBER(status_text) | 89 IPC_STRUCT_TRAITS_MEMBER(status_text) |
| 90 IPC_STRUCT_TRAITS_MEMBER(response_type) | 90 IPC_STRUCT_TRAITS_MEMBER(response_type) |
| 91 IPC_STRUCT_TRAITS_MEMBER(headers) | 91 IPC_STRUCT_TRAITS_MEMBER(headers) |
| 92 IPC_STRUCT_TRAITS_MEMBER(blob_uuid) | 92 IPC_STRUCT_TRAITS_MEMBER(blob_uuid) |
| 93 IPC_STRUCT_TRAITS_MEMBER(blob_size) | 93 IPC_STRUCT_TRAITS_MEMBER(blob_size) |
| 94 IPC_STRUCT_TRAITS_MEMBER(stream_url) | 94 IPC_STRUCT_TRAITS_MEMBER(stream_url) |
| 95 IPC_STRUCT_TRAITS_MEMBER(error) | 95 IPC_STRUCT_TRAITS_MEMBER(error) |
| 96 IPC_STRUCT_TRAITS_MEMBER(response_time) | 96 IPC_STRUCT_TRAITS_MEMBER(response_time) |
| 97 IPC_STRUCT_TRAITS_MEMBER(is_in_cache_storage) | 97 IPC_STRUCT_TRAITS_MEMBER(is_in_cache_storage) |
| (...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 594 | 594 |
| 595 // Sent via EmbeddedWorker as a response of NavigateClient. | 595 // Sent via EmbeddedWorker as a response of NavigateClient. |
| 596 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse, | 596 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse, |
| 597 int /* request_id */, | 597 int /* request_id */, |
| 598 content::ServiceWorkerClientInfo /* client */) | 598 content::ServiceWorkerClientInfo /* client */) |
| 599 | 599 |
| 600 // Sent via EmbeddedWorker as an error response of NavigateClient. | 600 // Sent via EmbeddedWorker as an error response of NavigateClient. |
| 601 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError, | 601 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError, |
| 602 int /* request_id */, | 602 int /* request_id */, |
| 603 GURL /* url */) | 603 GURL /* url */) |
| OLD | NEW |