| Index: content/renderer/shared_worker_repository.cc
|
| diff --git a/content/renderer/shared_worker_repository.cc b/content/renderer/shared_worker_repository.cc
|
| index 93b1a0647bc5cede31fbb69766c1bb58598ae3da..607e044fe27def453d4ad8c2f610461b73129b6a 100644
|
| --- a/content/renderer/shared_worker_repository.cc
|
| +++ b/content/renderer/shared_worker_repository.cc
|
| @@ -27,6 +27,7 @@ SharedWorkerRepository::createSharedWorkerConnector(
|
| DocumentID document_id,
|
| const blink::WebString& content_security_policy,
|
| blink::WebContentSecurityPolicyType security_policy_type,
|
| + blink::WebAddressSpace creation_address_space,
|
| blink::WebSharedWorkerCreationContextType creation_context_type,
|
| blink::WebWorkerCreationError* error) {
|
| ViewHostMsg_CreateWorker_Params params;
|
| @@ -36,6 +37,7 @@ SharedWorkerRepository::createSharedWorkerConnector(
|
| params.security_policy_type = security_policy_type;
|
| params.document_id = document_id;
|
| params.render_frame_route_id = render_frame()->GetRoutingID();
|
| + params.creation_address_space = creation_address_space;
|
| params.creation_context_type = creation_context_type;
|
| ViewHostMsg_CreateWorker_Reply reply;
|
| Send(new ViewHostMsg_CreateWorker(params, &reply));
|
|
|