diff options
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/render_messages_internal.h | 12 | ||||
-rw-r--r-- | chrome/common/worker_messages_internal.h | 4 |
2 files changed, 11 insertions, 5 deletions
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h index c7a050c..38694f3 100644 --- a/chrome/common/render_messages_internal.h +++ b/chrome/common/render_messages_internal.h @@ -1712,9 +1712,17 @@ IPC_BEGIN_MESSAGES(ViewHost) // A renderer sends this to the browser process when it wants to create a // worker. The browser will create the worker process if necessary, and // will return the route id on success. On error returns MSG_ROUTING_NONE. - IPC_SYNC_MESSAGE_CONTROL4_1(ViewHostMsg_CreateWorker, + IPC_SYNC_MESSAGE_CONTROL2_1(ViewHostMsg_CreateDedicatedWorker, + GURL /* url */, + int /* render_view_route_id */, + int /* route_id */) + + // A renderer sends this to the browser process when it wants to create a + // shared worker. The browser will create the worker process if necessary, + // and will return the route id on success. On error returns + // MSG_ROUTING_NONE. + IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_CreateSharedWorker, GURL /* url */, - bool /* is_shared */, string16 /* name */, int /* render_view_route_id */, int /* route_id */) diff --git a/chrome/common/worker_messages_internal.h b/chrome/common/worker_messages_internal.h index 04c983c..6ed4d09 100644 --- a/chrome/common/worker_messages_internal.h +++ b/chrome/common/worker_messages_internal.h @@ -13,10 +13,8 @@ // WorkerProcess messages // These are messages sent from the browser to the worker process. IPC_BEGIN_MESSAGES(WorkerProcess) - IPC_MESSAGE_CONTROL4(WorkerProcessMsg_CreateWorker, + IPC_MESSAGE_CONTROL2(WorkerProcessMsg_CreateWorker, GURL /* url */, - bool /* is_shared */, - string16 /* name */, int /* route_id */) // Note: these Message Port related messages can also be sent to the |