| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #include <utility> | 5 #include <utility> |
| 6 #include <vector> | 6 #include <vector> |
| 7 #include "base/string16.h" | 7 #include "base/string16.h" |
| 8 #include "googleurl/src/gurl.h" | 8 #include "googleurl/src/gurl.h" |
| 9 #include "ipc/ipc_message_macros.h" | 9 #include "ipc/ipc_message_macros.h" |
| 10 | 10 |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 | 116 |
| 117 IPC_MESSAGE_ROUTED1(WorkerHostMsg_PostConsoleMessageToWorkerObject, | 117 IPC_MESSAGE_ROUTED1(WorkerHostMsg_PostConsoleMessageToWorkerObject, |
| 118 WorkerHostMsg_PostConsoleMessageToWorkerObject_Params) | 118 WorkerHostMsg_PostConsoleMessageToWorkerObject_Params) |
| 119 | 119 |
| 120 IPC_MESSAGE_ROUTED1(WorkerHostMsg_ConfirmMessageFromWorkerObject, | 120 IPC_MESSAGE_ROUTED1(WorkerHostMsg_ConfirmMessageFromWorkerObject, |
| 121 bool /* bool has_pending_activity */) | 121 bool /* bool has_pending_activity */) |
| 122 | 122 |
| 123 IPC_MESSAGE_ROUTED1(WorkerHostMsg_ReportPendingActivity, | 123 IPC_MESSAGE_ROUTED1(WorkerHostMsg_ReportPendingActivity, |
| 124 bool /* bool has_pending_activity */) | 124 bool /* bool has_pending_activity */) |
| 125 | 125 |
| 126 IPC_MESSAGE_CONTROL1(WorkerHostMsg_WorkerContextClosed, |
| 127 int /* worker_route_id */) |
| 126 IPC_MESSAGE_ROUTED0(WorkerHostMsg_WorkerContextDestroyed) | 128 IPC_MESSAGE_ROUTED0(WorkerHostMsg_WorkerContextDestroyed) |
| 127 IPC_END_MESSAGES(WorkerHost) | 129 IPC_END_MESSAGES(WorkerHost) |
| OLD | NEW |