| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef CONTENT_COMMON_CACHE_STORAGE_CACHE_STORAGE_MESSAGES_H_ |
| 6 #define CONTENT_COMMON_CACHE_STORAGE_CACHE_STORAGE_MESSAGES_H_ |
| 7 |
| 5 // Message definition file, included multiple times, hence no include guard. | 8 // Message definition file, included multiple times, hence no include guard. |
| 6 | 9 |
| 7 #include <string> | 10 #include <string> |
| 8 #include <vector> | 11 #include <vector> |
| 9 | 12 |
| 10 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
| 11 #include "content/common/cache_storage/cache_storage_types.h" | 14 #include "content/common/cache_storage/cache_storage_types.h" |
| 12 #include "content/common/service_worker/service_worker_types.h" | 15 #include "content/common/service_worker/service_worker_types.h" |
| 13 #include "ipc/ipc_message_macros.h" | 16 #include "ipc/ipc_message_macros.h" |
| 14 #include "ipc/ipc_param_traits.h" | 17 #include "ipc/ipc_param_traits.h" |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 int /* request_id */, | 187 int /* request_id */, |
| 185 blink::WebServiceWorkerCacheError) | 188 blink::WebServiceWorkerCacheError) |
| 186 IPC_MESSAGE_CONTROL3(CacheStorageMsg_CacheKeysError, | 189 IPC_MESSAGE_CONTROL3(CacheStorageMsg_CacheKeysError, |
| 187 int /* thread_id */, | 190 int /* thread_id */, |
| 188 int /* request_id */, | 191 int /* request_id */, |
| 189 blink::WebServiceWorkerCacheError) | 192 blink::WebServiceWorkerCacheError) |
| 190 IPC_MESSAGE_CONTROL3(CacheStorageMsg_CacheBatchError, | 193 IPC_MESSAGE_CONTROL3(CacheStorageMsg_CacheBatchError, |
| 191 int /* thread_id */, | 194 int /* thread_id */, |
| 192 int /* request_id */, | 195 int /* request_id */, |
| 193 blink::WebServiceWorkerCacheError) | 196 blink::WebServiceWorkerCacheError) |
| 197 |
| 198 #endif // CONTENT_COMMON_CACHE_STORAGE_CACHE_STORAGE_MESSAGES_H_ |
| OLD | NEW |