// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_COMMON_SERVICE_WORKER_SERVICE_WORKER_RESOURCE_LOADER_H_ #define CONTENT_COMMON_SERVICE_WORKER_SERVICE_WORKER_RESOURCE_LOADER_H_ #include <optional> #include "base/check_op.h" #include "content/common/content_export.h" #include "services/network/public/mojom/service_worker_router_info.mojom-shared.h" #include "services/network/public/mojom/url_loader.mojom.h" #include "third_party/blink/public/common/service_worker/service_worker_router_rule.h" namespace content { // A common interface in between: // - ServiceWorkerMainResourceLoader in the browser // - ServiceWorkerSubresourceLoader in the renderer // // Represents how to commit a response being fetch from ServiceWorker. // // To implement feature RaceNetworkRequest (crbug.com/1420517), we store into // this common class whether the response came from the ServiceWorker fetch // handler or from a direct network request. class CONTENT_EXPORT ServiceWorkerResourceLoader { … }; } // namespace content #endif // CONTENT_COMMON_SERVICE_WORKER_SERVICE_WORKER_RESOURCE_LOADER_H_