| Index: content/browser/shared_worker/shared_worker_instance.cc
|
| diff --git a/content/browser/shared_worker/shared_worker_instance.cc b/content/browser/shared_worker/shared_worker_instance.cc
|
| index caa3876e63dfd716eee511bee0067f658062dddd..282cf190515772755d10bb94580bbc7512bdade5 100644
|
| --- a/content/browser/shared_worker/shared_worker_instance.cc
|
| +++ b/content/browser/shared_worker/shared_worker_instance.cc
|
| @@ -13,6 +13,7 @@ SharedWorkerInstance::SharedWorkerInstance(
|
| const base::string16& name,
|
| const base::string16& content_security_policy,
|
| blink::WebContentSecurityPolicyType security_policy_type,
|
| + blink::WebAddressSpace creation_address_space,
|
| ResourceContext* resource_context,
|
| const WorkerStoragePartitionId& partition_id,
|
| blink::WebSharedWorkerCreationContextType creation_context_type)
|
| @@ -20,6 +21,7 @@ SharedWorkerInstance::SharedWorkerInstance(
|
| name_(name),
|
| content_security_policy_(content_security_policy),
|
| security_policy_type_(security_policy_type),
|
| + creation_address_space_(creation_address_space),
|
| resource_context_(resource_context),
|
| partition_id_(partition_id),
|
| creation_context_type_(creation_context_type) {
|
| @@ -31,6 +33,7 @@ SharedWorkerInstance::SharedWorkerInstance(const SharedWorkerInstance& other)
|
| name_(other.name_),
|
| content_security_policy_(other.content_security_policy_),
|
| security_policy_type_(other.security_policy_type_),
|
| + creation_address_space_(other.creation_address_space_),
|
| resource_context_(other.resource_context_),
|
| partition_id_(other.partition_id_),
|
| creation_context_type_(other.creation_context_type_) {}
|
|
|