| Index: content/browser/shared_worker/shared_worker_instance.h
|
| diff --git a/content/browser/shared_worker/shared_worker_instance.h b/content/browser/shared_worker/shared_worker_instance.h
|
| index 9d4e303d120d6b416e7e79da1b00c49350bc550f..0d613167d462d6b524b3725bce33cc1c8745c572 100644
|
| --- a/content/browser/shared_worker/shared_worker_instance.h
|
| +++ b/content/browser/shared_worker/shared_worker_instance.h
|
| @@ -16,8 +16,6 @@
|
| namespace content {
|
| class ResourceContext;
|
|
|
| -// SharedWorkerInstance is copyable value-type data type. It could be passed to
|
| -// the UI thread and be used for comparison in SharedWorkerDevToolsManager.
|
| class CONTENT_EXPORT SharedWorkerInstance {
|
| public:
|
| SharedWorkerInstance(const GURL& url,
|
| @@ -26,7 +24,6 @@
|
| blink::WebContentSecurityPolicyType security_policy_type,
|
| ResourceContext* resource_context,
|
| const WorkerStoragePartition& partition);
|
| - SharedWorkerInstance(const SharedWorkerInstance& other);
|
| ~SharedWorkerInstance();
|
|
|
| // Checks if this SharedWorkerInstance matches the passed url/name params
|
| @@ -40,7 +37,6 @@
|
| const base::string16& name,
|
| const WorkerStoragePartition& partition,
|
| ResourceContext* resource_context) const;
|
| - bool Matches(const SharedWorkerInstance& other) const;
|
|
|
| // Accessors.
|
| const GURL& url() const { return url_; }
|
|
|