| 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 #ifndef CONTENT_COMMON_SERVICE_WORKER_SERVICE_WORKER_MESSAGES_H_ |
| 6 #define CONTENT_COMMON_SERVICE_WORKER_SERVICE_WORKER_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 <stdint.h> | 10 #include <stdint.h> |
| 8 | 11 |
| 9 #include <string> | 12 #include <string> |
| 10 #include <vector> | 13 #include <vector> |
| 11 | 14 |
| 12 #include "base/strings/string16.h" | 15 #include "base/strings/string16.h" |
| 13 #include "base/time/time.h" | 16 #include "base/time/time.h" |
| 14 #include "content/common/message_port.h" | 17 #include "content/common/message_port.h" |
| (...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 | 516 |
| 514 // Sent via EmbeddedWorker as a response of NavigateClient. | 517 // Sent via EmbeddedWorker as a response of NavigateClient. |
| 515 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse, | 518 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse, |
| 516 int /* request_id */, | 519 int /* request_id */, |
| 517 content::ServiceWorkerClientInfo /* client */) | 520 content::ServiceWorkerClientInfo /* client */) |
| 518 | 521 |
| 519 // Sent via EmbeddedWorker as an error response of NavigateClient. | 522 // Sent via EmbeddedWorker as an error response of NavigateClient. |
| 520 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError, | 523 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError, |
| 521 int /* request_id */, | 524 int /* request_id */, |
| 522 GURL /* url */) | 525 GURL /* url */) |
| 526 |
| 527 #endif // CONTENT_COMMON_SERVICE_WORKER_SERVICE_WORKER_MESSAGES_H_ |
| OLD | NEW |