| 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 "base/string16.h" | 5 #include "base/string16.h" |
| 6 #include "chrome/common/ipc_message_macros.h" | |
| 7 #include "googleurl/src/gurl.h" | 6 #include "googleurl/src/gurl.h" |
| 7 #include "ipc/ipc_message_macros.h" |
| 8 | 8 |
| 9 | 9 |
| 10 //----------------------------------------------------------------------------- | 10 //----------------------------------------------------------------------------- |
| 11 // WorkerProcess messages | 11 // WorkerProcess messages |
| 12 // These are messages sent from the browser to the worker process. | 12 // These are messages sent from the browser to the worker process. |
| 13 IPC_BEGIN_MESSAGES(WorkerProcess) | 13 IPC_BEGIN_MESSAGES(WorkerProcess) |
| 14 IPC_MESSAGE_CONTROL2(WorkerProcessMsg_CreateWorker, | 14 IPC_MESSAGE_CONTROL2(WorkerProcessMsg_CreateWorker, |
| 15 GURL /* url */, | 15 GURL /* url */, |
| 16 int /* route_id */) | 16 int /* route_id */) |
| 17 IPC_END_MESSAGES(WorkerProcess) | 17 IPC_END_MESSAGES(WorkerProcess) |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 WorkerHostMsg_PostConsoleMessageToWorkerObject_Params) | 59 WorkerHostMsg_PostConsoleMessageToWorkerObject_Params) |
| 60 | 60 |
| 61 IPC_MESSAGE_ROUTED1(WorkerHostMsg_ConfirmMessageFromWorkerObject, | 61 IPC_MESSAGE_ROUTED1(WorkerHostMsg_ConfirmMessageFromWorkerObject, |
| 62 bool /* bool has_pending_activity */) | 62 bool /* bool has_pending_activity */) |
| 63 | 63 |
| 64 IPC_MESSAGE_ROUTED1(WorkerHostMsg_ReportPendingActivity, | 64 IPC_MESSAGE_ROUTED1(WorkerHostMsg_ReportPendingActivity, |
| 65 bool /* bool has_pending_activity */) | 65 bool /* bool has_pending_activity */) |
| 66 | 66 |
| 67 IPC_MESSAGE_ROUTED0(WorkerHostMsg_WorkerContextDestroyed) | 67 IPC_MESSAGE_ROUTED0(WorkerHostMsg_WorkerContextDestroyed) |
| 68 IPC_END_MESSAGES(WorkerHost) | 68 IPC_END_MESSAGES(WorkerHost) |
| OLD | NEW |