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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 IPC_STRUCT_TRAITS_END() | 99 IPC_STRUCT_TRAITS_END() |
100 | 100 |
101 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerVersionAttributes) | 101 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerVersionAttributes) |
102 IPC_STRUCT_TRAITS_MEMBER(installing) | 102 IPC_STRUCT_TRAITS_MEMBER(installing) |
103 IPC_STRUCT_TRAITS_MEMBER(waiting) | 103 IPC_STRUCT_TRAITS_MEMBER(waiting) |
104 IPC_STRUCT_TRAITS_MEMBER(active) | 104 IPC_STRUCT_TRAITS_MEMBER(active) |
105 IPC_STRUCT_TRAITS_END() | 105 IPC_STRUCT_TRAITS_END() |
106 | 106 |
107 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerClientInfo) | 107 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerClientInfo) |
108 IPC_STRUCT_TRAITS_MEMBER(client_id) | 108 IPC_STRUCT_TRAITS_MEMBER(client_id) |
109 IPC_STRUCT_TRAITS_MEMBER(visibility_state) | 109 IPC_STRUCT_TRAITS_MEMBER(page_visibility_state) |
110 IPC_STRUCT_TRAITS_MEMBER(is_focused) | 110 IPC_STRUCT_TRAITS_MEMBER(is_focused) |
111 IPC_STRUCT_TRAITS_MEMBER(url) | 111 IPC_STRUCT_TRAITS_MEMBER(url) |
112 IPC_STRUCT_TRAITS_MEMBER(frame_type) | 112 IPC_STRUCT_TRAITS_MEMBER(frame_type) |
113 IPC_STRUCT_TRAITS_END() | 113 IPC_STRUCT_TRAITS_END() |
114 | 114 |
115 IPC_ENUM_TRAITS_MAX_VALUE( | 115 IPC_ENUM_TRAITS_MAX_VALUE( |
116 blink::WebServiceWorkerCacheError, | 116 blink::WebServiceWorkerCacheError, |
117 blink::WebServiceWorkerCacheErrorLast) | 117 blink::WebServiceWorkerCacheErrorLast) |
118 | 118 |
119 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebGeofencingEventType, | 119 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebGeofencingEventType, |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
498 blink::WebServiceWorkerCacheError) | 498 blink::WebServiceWorkerCacheError) |
499 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheMatchAllError, | 499 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheMatchAllError, |
500 int /* request_id */, | 500 int /* request_id */, |
501 blink::WebServiceWorkerCacheError) | 501 blink::WebServiceWorkerCacheError) |
502 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheKeysError, | 502 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheKeysError, |
503 int /* request_id */, | 503 int /* request_id */, |
504 blink::WebServiceWorkerCacheError) | 504 blink::WebServiceWorkerCacheError) |
505 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheBatchError, | 505 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheBatchError, |
506 int /* request_id */, | 506 int /* request_id */, |
507 blink::WebServiceWorkerCacheError) | 507 blink::WebServiceWorkerCacheError) |
OLD | NEW |