| 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 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 454 int /* request_id */, | 454 int /* request_id */, |
| 455 content::ServiceWorkerClientInfo /* client */) | 455 content::ServiceWorkerClientInfo /* client */) |
| 456 | 456 |
| 457 // Sent via EmbeddedWorker as an error response of OpenWindow. | 457 // Sent via EmbeddedWorker as an error response of OpenWindow. |
| 458 IPC_MESSAGE_CONTROL1(ServiceWorkerMsg_OpenWindowError, | 458 IPC_MESSAGE_CONTROL1(ServiceWorkerMsg_OpenWindowError, |
| 459 int /* request_id */ ) | 459 int /* request_id */ ) |
| 460 | 460 |
| 461 // Sent via EmbeddedWorker as a response of FocusClient. | 461 // Sent via EmbeddedWorker as a response of FocusClient. |
| 462 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_FocusClientResponse, | 462 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_FocusClientResponse, |
| 463 int /* request_id */, | 463 int /* request_id */, |
| 464 bool /* result */) | 464 content::ServiceWorkerClientInfo /* client */) |
| 465 | 465 |
| 466 // Sent via EmbeddedWorker at successful completion of CacheStorage operations. | 466 // Sent via EmbeddedWorker at successful completion of CacheStorage operations. |
| 467 IPC_MESSAGE_CONTROL1(ServiceWorkerMsg_CacheStorageHasSuccess, | 467 IPC_MESSAGE_CONTROL1(ServiceWorkerMsg_CacheStorageHasSuccess, |
| 468 int /* request_id */) | 468 int /* request_id */) |
| 469 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheStorageOpenSuccess, | 469 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheStorageOpenSuccess, |
| 470 int /* request_id */, | 470 int /* request_id */, |
| 471 int /* fetch_store_id */) | 471 int /* fetch_store_id */) |
| 472 IPC_MESSAGE_CONTROL1(ServiceWorkerMsg_CacheStorageDeleteSuccess, | 472 IPC_MESSAGE_CONTROL1(ServiceWorkerMsg_CacheStorageDeleteSuccess, |
| 473 int /* request_id */) | 473 int /* request_id */) |
| 474 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheStorageKeysSuccess, | 474 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheStorageKeysSuccess, |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 blink::WebServiceWorkerCacheError) | 515 blink::WebServiceWorkerCacheError) |
| 516 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheMatchAllError, | 516 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheMatchAllError, |
| 517 int /* request_id */, | 517 int /* request_id */, |
| 518 blink::WebServiceWorkerCacheError) | 518 blink::WebServiceWorkerCacheError) |
| 519 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheKeysError, | 519 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheKeysError, |
| 520 int /* request_id */, | 520 int /* request_id */, |
| 521 blink::WebServiceWorkerCacheError) | 521 blink::WebServiceWorkerCacheError) |
| 522 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheBatchError, | 522 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheBatchError, |
| 523 int /* request_id */, | 523 int /* request_id */, |
| 524 blink::WebServiceWorkerCacheError) | 524 blink::WebServiceWorkerCacheError) |
| OLD | NEW |