#ifndef CONTENT_PUBLIC_BROWSER_SERVICE_WORKER_CONTEXT_H_
#define CONTENT_PUBLIC_BROWSER_SERVICE_WORKER_CONTEXT_H_
#include <optional>
#include <set>
#include <string>
#include <vector>
#include "base/functional/callback_forward.h"
#include "base/observer_list_types.h"
#include "base/task/sequenced_task_runner.h"
#include "content/common/content_export.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/service_worker_external_request_result.h"
#include "content/public/browser/service_worker_external_request_timeout_type.h"
#include "content/public/browser/service_worker_running_info.h"
#include "services/service_manager/public/cpp/interface_provider.h"
#include "third_party/blink/public/common/messaging/transferable_message.h"
#include "third_party/blink/public/common/service_worker/service_worker_status_code.h"
#include "third_party/blink/public/mojom/service_worker/service_worker_registration.mojom-forward.h"
#include "third_party/blink/public/mojom/service_worker/service_worker_registration_options.mojom-forward.h"
namespace base {
class Uuid;
}
namespace blink {
class AssociatedInterfaceProvider;
class StorageKey;
}
namespace service_manager {
class InterfaceProvider;
}
namespace url {
class Origin;
}
class GURL;
namespace content {
class ServiceWorkerContextObserver;
struct ServiceWorkerRunningInfo;
struct StorageUsageInfo;
enum class ServiceWorkerCapability { … };
enum class OfflineCapability { … };
enum class StartServiceWorkerForNavigationHintResult { … };
ServiceWorkerScriptExecutionCallback;
class ServiceWorkerContextObserverSynchronous : public base::CheckedObserver { … };
class CONTENT_EXPORT ServiceWorkerContext { … };
}
#endif