| 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 a4965a55085e323fbc12ceddbe838a5c60779448..506626a54e17612e99d78c734fbb038e42cdc27e 100644
|
| --- a/content/browser/shared_worker/shared_worker_instance.cc
|
| +++ b/content/browser/shared_worker/shared_worker_instance.cc
|
| @@ -24,15 +24,8 @@
|
| DCHECK(resource_context_);
|
| }
|
|
|
| -SharedWorkerInstance::SharedWorkerInstance(const SharedWorkerInstance& other)
|
| - : url_(other.url_),
|
| - name_(other.name_),
|
| - content_security_policy_(other.content_security_policy_),
|
| - security_policy_type_(other.security_policy_type_),
|
| - resource_context_(other.resource_context_),
|
| - partition_(other.partition_) {}
|
| -
|
| -SharedWorkerInstance::~SharedWorkerInstance() {}
|
| +SharedWorkerInstance::~SharedWorkerInstance() {
|
| +}
|
|
|
| bool SharedWorkerInstance::Matches(const GURL& match_url,
|
| const base::string16& match_name,
|
| @@ -57,9 +50,4 @@
|
| return name_ == match_name;
|
| }
|
|
|
| -bool SharedWorkerInstance::Matches(const SharedWorkerInstance& other) const {
|
| - return Matches(
|
| - other.url(), other.name(), other.partition(), other.resource_context());
|
| -}
|
| -
|
| } // namespace content
|
|
|