Index: content/common/worker_messages.h |
diff --git a/content/common/worker_messages.h b/content/common/worker_messages.h |
index 6f20461ec3ed181313aa853c39ed0324be2425a2..b11177cc944adc750cec3de19ee2df253bf5bddc 100644 |
--- a/content/common/worker_messages.h |
+++ b/content/common/worker_messages.h |
@@ -51,6 +51,7 @@ IPC_STRUCT_BEGIN(WorkerProcessMsg_CreateWorker_Params) |
IPC_STRUCT_MEMBER(int, route_id) |
IPC_STRUCT_MEMBER(int, creator_process_id) |
IPC_STRUCT_MEMBER(int64, shared_worker_appcache_id) |
+ IPC_STRUCT_MEMBER(bool, is_controller) |
IPC_STRUCT_END() |
IPC_ENUM_TRAITS(WebKit::WebContentSecurityPolicyType) |
@@ -61,6 +62,10 @@ IPC_ENUM_TRAITS(WebKit::WebContentSecurityPolicyType) |
IPC_MESSAGE_CONTROL1(WorkerProcessMsg_CreateWorker, |
WorkerProcessMsg_CreateWorker_Params) |
+IPC_MESSAGE_ROUTED2(WorkerMsg_StartEmbeddedWorkerContext, |
+ GURL /* url */, |
+ std::string /* raw_source_code */) |
+ |
// Note: these Message Port related messages can also be sent to the |
// renderer process. Putting them here since we don't have a shared place |
// like common_messages_internal.h |
@@ -165,7 +170,6 @@ IPC_MESSAGE_ROUTED2(WorkerMsg_Connect, |
IPC_MESSAGE_ROUTED0(WorkerMsg_WorkerObjectDestroyed) |
- |
//----------------------------------------------------------------------------- |
// WorkerHost messages |
// These are messages sent from the worker process to the renderer process. |