#ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_INFO_H_
#define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_INFO_H_
#include <stdint.h>
#include <map>
#include <vector>
#include "base/functional/callback.h"
#include "base/time/time.h"
#include "content/browser/service_worker/service_worker_version.h"
#include "content/common/content_export.h"
#include "content/public/browser/service_worker_client_info.h"
#include "content/public/browser/service_worker_version_base_info.h"
#include "services/metrics/public/cpp/ukm_source_id.h"
#include "third_party/blink/public/common/service_worker/embedded_worker_status.h"
#include "third_party/blink/public/common/storage_key/storage_key.h"
#include "third_party/blink/public/mojom/service_worker/service_worker_container_type.mojom.h"
#include "url/gurl.h"
namespace blink {
class StorageKey;
}
namespace content {
struct CONTENT_EXPORT ServiceWorkerVersionInfo
: public ServiceWorkerVersionBaseInfo { … };
struct CONTENT_EXPORT ServiceWorkerRegistrationInfo { … };
}
#endif