blob: f6cf9754fcf728bef52bb0125064ccd780c19e2c [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_COMMON_FETCH_FETCH_REQUEST_TYPE_CONVERTERS_H_
#define CONTENT_COMMON_FETCH_FETCH_REQUEST_TYPE_CONVERTERS_H_
#include "services/network/public/cpp/resource_request.h"
#include "third_party/blink/public/mojom/fetch/fetch_api_request.mojom.h"
// This is used only by Service Workers for now.
namespace mojo {
template <>
struct TypeConverter<blink::mojom::FetchAPIRequestPtr,
network::ResourceRequest> {
static blink::mojom::FetchAPIRequestPtr Convert(
const network::ResourceRequest& input);
};
} // namespace mojo
#endif // CONTENT_COMMON_FETCH_FETCH_REQUEST_TYPE_CONVERTERS_H_