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 18 matching lines...) Expand all Loading... |
29 blink::WebServiceWorkerEventResultLast) | 29 blink::WebServiceWorkerEventResultLast) |
30 | 30 |
31 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebServiceWorkerState, | 31 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebServiceWorkerState, |
32 blink::WebServiceWorkerStateLast) | 32 blink::WebServiceWorkerStateLast) |
33 | 33 |
34 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebServiceWorkerResponseType, | 34 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebServiceWorkerResponseType, |
35 blink::WebServiceWorkerResponseTypeLast) | 35 blink::WebServiceWorkerResponseTypeLast) |
36 | 36 |
37 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerFetchRequest) | 37 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerFetchRequest) |
38 IPC_STRUCT_TRAITS_MEMBER(mode) | 38 IPC_STRUCT_TRAITS_MEMBER(mode) |
| 39 IPC_STRUCT_TRAITS_MEMBER(request_context_type) |
| 40 IPC_STRUCT_TRAITS_MEMBER(frame_type) |
39 IPC_STRUCT_TRAITS_MEMBER(url) | 41 IPC_STRUCT_TRAITS_MEMBER(url) |
40 IPC_STRUCT_TRAITS_MEMBER(method) | 42 IPC_STRUCT_TRAITS_MEMBER(method) |
41 IPC_STRUCT_TRAITS_MEMBER(headers) | 43 IPC_STRUCT_TRAITS_MEMBER(headers) |
42 IPC_STRUCT_TRAITS_MEMBER(blob_uuid) | 44 IPC_STRUCT_TRAITS_MEMBER(blob_uuid) |
43 IPC_STRUCT_TRAITS_MEMBER(blob_size) | 45 IPC_STRUCT_TRAITS_MEMBER(blob_size) |
44 IPC_STRUCT_TRAITS_MEMBER(referrer) | 46 IPC_STRUCT_TRAITS_MEMBER(referrer) |
45 IPC_STRUCT_TRAITS_MEMBER(credentials_mode) | 47 IPC_STRUCT_TRAITS_MEMBER(credentials_mode) |
46 IPC_STRUCT_TRAITS_MEMBER(is_reload) | 48 IPC_STRUCT_TRAITS_MEMBER(is_reload) |
47 IPC_STRUCT_TRAITS_END() | 49 IPC_STRUCT_TRAITS_END() |
48 | 50 |
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
406 blink::WebServiceWorkerCacheError) | 408 blink::WebServiceWorkerCacheError) |
407 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheMatchAllError, | 409 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheMatchAllError, |
408 int /* request_id */, | 410 int /* request_id */, |
409 blink::WebServiceWorkerCacheError) | 411 blink::WebServiceWorkerCacheError) |
410 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheKeysError, | 412 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheKeysError, |
411 int /* request_id */, | 413 int /* request_id */, |
412 blink::WebServiceWorkerCacheError) | 414 blink::WebServiceWorkerCacheError) |
413 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheBatchError, | 415 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheBatchError, |
414 int /* request_id */, | 416 int /* request_id */, |
415 blink::WebServiceWorkerCacheError) | 417 blink::WebServiceWorkerCacheError) |
OLD | NEW |