#ifndef CONTENT_PUBLIC_BROWSER_SHARED_WORKER_INSTANCE_H_
#define CONTENT_PUBLIC_BROWSER_SHARED_WORKER_INSTANCE_H_
#include <string>
#include "content/common/content_export.h"
#include "services/network/public/mojom/content_security_policy.mojom.h"
#include "services/network/public/mojom/fetch_api.mojom.h"
#include "third_party/blink/public/common/storage_key/storage_key.h"
#include "third_party/blink/public/mojom/script/script_type.mojom.h"
#include "third_party/blink/public/mojom/worker/shared_worker_creation_context_type.mojom.h"
#include "url/gurl.h"
#include "url/origin.h"
namespace content {
class CONTENT_EXPORT SharedWorkerInstance {
public:
SharedWorkerInstance(
const GURL& url,
blink::mojom::ScriptType script_type,
network::mojom::CredentialsMode credentials_mode,
const std::string& name,
const blink::StorageKey& storage_key,
blink::mojom::SharedWorkerCreationContextType creation_context_type);
SharedWorkerInstance(const SharedWorkerInstance& other);
SharedWorkerInstance(SharedWorkerInstance&& other);
SharedWorkerInstance& operator=(const SharedWorkerInstance& other) = delete;
SharedWorkerInstance& operator=(SharedWorkerInstance&& other) = delete;
~SharedWorkerInstance();
bool Matches(const GURL& url,
const std::string& name,
const blink::StorageKey& storage_key) const;
const GURL& url() const { return url_; }
const std::string& name() const { return name_; }
blink::mojom::ScriptType script_type() const { return script_type_; }
network::mojom::CredentialsMode credentials_mode() const {
return credentials_mode_;
}
const blink::StorageKey& storage_key() const { return storage_key_; }
blink::mojom::SharedWorkerCreationContextType creation_context_type() const {
return creation_context_type_;
}
private:
const GURL url_;
const blink::mojom::ScriptType script_type_;
const network::mojom::CredentialsMode credentials_mode_;
const std::string name_;
const blink::StorageKey storage_key_;
const blink::mojom::SharedWorkerCreationContextType creation_context_type_;
};
}
#endif