#include "content/browser/service_worker/service_worker_info.h"
#include "content/browser/service_worker/service_worker_consts.h"
#include "content/public/browser/child_process_host.h"
#include "ipc/ipc_message.h"
#include "third_party/blink/public/common/service_worker/embedded_worker_status.h"
#include "third_party/blink/public/mojom/service_worker/service_worker_object.mojom.h"
#include "third_party/blink/public/mojom/service_worker/service_worker_registration.mojom.h"
namespace content {
ServiceWorkerVersionInfo::ServiceWorkerVersionInfo()
: … { … }
ServiceWorkerVersionInfo::ServiceWorkerVersionInfo(
blink::EmbeddedWorkerStatus running_status,
ServiceWorkerVersion::Status status,
std::optional<ServiceWorkerVersion::FetchHandlerType> fetch_handler_type,
const GURL& script_url,
const GURL& scope,
const blink::StorageKey& storage_key,
int64_t registration_id,
int64_t version_id,
int process_id,
int thread_id,
int devtools_agent_route_id,
ukm::SourceId ukm_source_id,
blink::mojom::AncestorFrameType ancestor_frame_type,
std::optional<std::string> router_rules)
: … { … }
ServiceWorkerVersionInfo::ServiceWorkerVersionInfo(
const ServiceWorkerVersionInfo& other) = default;
ServiceWorkerVersionInfo::~ServiceWorkerVersionInfo() { … }
ServiceWorkerRegistrationInfo::ServiceWorkerRegistrationInfo()
: … { … }
ServiceWorkerRegistrationInfo::ServiceWorkerRegistrationInfo(
const GURL& scope,
const blink::StorageKey& key,
int64_t registration_id,
DeleteFlag delete_flag)
: … { … }
ServiceWorkerRegistrationInfo::ServiceWorkerRegistrationInfo(
const GURL& scope,
const blink::StorageKey& key,
blink::mojom::ServiceWorkerUpdateViaCache update_via_cache,
int64_t registration_id,
DeleteFlag delete_flag,
const ServiceWorkerVersionInfo& active_version,
const ServiceWorkerVersionInfo& waiting_version,
const ServiceWorkerVersionInfo& installing_version,
int64_t stored_version_size_bytes,
bool navigation_preload_enabled,
size_t navigation_preload_header_length)
: … { … }
ServiceWorkerRegistrationInfo::ServiceWorkerRegistrationInfo(
const ServiceWorkerRegistrationInfo& other) = default;
ServiceWorkerRegistrationInfo::~ServiceWorkerRegistrationInfo() { … }
}