#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_FETCH_REQUEST_UTIL_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_FETCH_REQUEST_UTIL_H_
#include "services/network/public/mojom/fetch_api.mojom-blink-forward.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_request_destination.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_request_mode.h"
#include "third_party/blink/renderer/core/core_export.h"
namespace blink {
CORE_EXPORT network::mojom::RequestMode V8RequestModeToMojom(
const V8RequestMode& mode);
CORE_EXPORT network::mojom::RequestDestination V8RequestDestinationToMojom(
const V8RequestDestination& destination);
}
#endif