| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_END() | 86 IPC_STRUCT_TRAITS_END() |
| 87 | 87 |
| 88 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerRegistrationObjectInfo) | 88 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerRegistrationObjectInfo) |
| 89 IPC_STRUCT_TRAITS_MEMBER(handle_id) | 89 IPC_STRUCT_TRAITS_MEMBER(handle_id) |
| 90 IPC_STRUCT_TRAITS_MEMBER(scope) | 90 IPC_STRUCT_TRAITS_MEMBER(scope) |
| 91 IPC_STRUCT_TRAITS_MEMBER(registration_id) |
| 91 IPC_STRUCT_TRAITS_END() | 92 IPC_STRUCT_TRAITS_END() |
| 92 | 93 |
| 93 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerVersionAttributes) | 94 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerVersionAttributes) |
| 94 IPC_STRUCT_TRAITS_MEMBER(installing) | 95 IPC_STRUCT_TRAITS_MEMBER(installing) |
| 95 IPC_STRUCT_TRAITS_MEMBER(waiting) | 96 IPC_STRUCT_TRAITS_MEMBER(waiting) |
| 96 IPC_STRUCT_TRAITS_MEMBER(active) | 97 IPC_STRUCT_TRAITS_MEMBER(active) |
| 97 IPC_STRUCT_TRAITS_END() | 98 IPC_STRUCT_TRAITS_END() |
| 98 | 99 |
| 99 IPC_ENUM_TRAITS_MAX_VALUE( | 100 IPC_ENUM_TRAITS_MAX_VALUE( |
| 100 blink::WebServiceWorkerCacheError, | 101 blink::WebServiceWorkerCacheError, |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 blink::WebServiceWorkerCacheError) | 403 blink::WebServiceWorkerCacheError) |
| 403 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheMatchAllError, | 404 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheMatchAllError, |
| 404 int /* request_id */, | 405 int /* request_id */, |
| 405 blink::WebServiceWorkerCacheError) | 406 blink::WebServiceWorkerCacheError) |
| 406 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheKeysError, | 407 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheKeysError, |
| 407 int /* request_id */, | 408 int /* request_id */, |
| 408 blink::WebServiceWorkerCacheError) | 409 blink::WebServiceWorkerCacheError) |
| 409 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheBatchError, | 410 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheBatchError, |
| 410 int /* request_id */, | 411 int /* request_id */, |
| 411 blink::WebServiceWorkerCacheError) | 412 blink::WebServiceWorkerCacheError) |
| OLD | NEW |