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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 IPC_STRUCT_TRAITS_MEMBER(request) | 76 IPC_STRUCT_TRAITS_MEMBER(request) |
77 IPC_STRUCT_TRAITS_MEMBER(response) | 77 IPC_STRUCT_TRAITS_MEMBER(response) |
78 IPC_STRUCT_TRAITS_MEMBER(match_params) | 78 IPC_STRUCT_TRAITS_MEMBER(match_params) |
79 IPC_STRUCT_TRAITS_END() | 79 IPC_STRUCT_TRAITS_END() |
80 | 80 |
81 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerObjectInfo) | 81 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerObjectInfo) |
82 IPC_STRUCT_TRAITS_MEMBER(handle_id) | 82 IPC_STRUCT_TRAITS_MEMBER(handle_id) |
83 IPC_STRUCT_TRAITS_MEMBER(scope) | 83 IPC_STRUCT_TRAITS_MEMBER(scope) |
84 IPC_STRUCT_TRAITS_MEMBER(url) | 84 IPC_STRUCT_TRAITS_MEMBER(url) |
85 IPC_STRUCT_TRAITS_MEMBER(state) | 85 IPC_STRUCT_TRAITS_MEMBER(state) |
| 86 IPC_STRUCT_TRAITS_MEMBER(version_id) |
86 IPC_STRUCT_TRAITS_END() | 87 IPC_STRUCT_TRAITS_END() |
87 | 88 |
88 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerRegistrationObjectInfo) | 89 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerRegistrationObjectInfo) |
89 IPC_STRUCT_TRAITS_MEMBER(handle_id) | 90 IPC_STRUCT_TRAITS_MEMBER(handle_id) |
90 IPC_STRUCT_TRAITS_MEMBER(scope) | 91 IPC_STRUCT_TRAITS_MEMBER(scope) |
91 IPC_STRUCT_TRAITS_MEMBER(registration_id) | 92 IPC_STRUCT_TRAITS_MEMBER(registration_id) |
92 IPC_STRUCT_TRAITS_END() | 93 IPC_STRUCT_TRAITS_END() |
93 | 94 |
94 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerVersionAttributes) | 95 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerVersionAttributes) |
95 IPC_STRUCT_TRAITS_MEMBER(installing) | 96 IPC_STRUCT_TRAITS_MEMBER(installing) |
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 blink::WebServiceWorkerCacheError) | 404 blink::WebServiceWorkerCacheError) |
404 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheMatchAllError, | 405 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheMatchAllError, |
405 int /* request_id */, | 406 int /* request_id */, |
406 blink::WebServiceWorkerCacheError) | 407 blink::WebServiceWorkerCacheError) |
407 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheKeysError, | 408 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheKeysError, |
408 int /* request_id */, | 409 int /* request_id */, |
409 blink::WebServiceWorkerCacheError) | 410 blink::WebServiceWorkerCacheError) |
410 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheBatchError, | 411 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheBatchError, |
411 int /* request_id */, | 412 int /* request_id */, |
412 blink::WebServiceWorkerCacheError) | 413 blink::WebServiceWorkerCacheError) |
OLD | NEW |