[go: nahoru, domu]

blob: 50f579cf6653ecaf10e0b07e618208c8bdf29dd6 [file] [log] [blame]
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SERVICES_NETWORK_PUBLIC_CPP_REQUEST_MODE_H_
#define SERVICES_NETWORK_PUBLIC_CPP_REQUEST_MODE_H_
#include "base/component_export.h"
#include "services/network/public/mojom/fetch_api.mojom-shared.h"
namespace network {
// Returns a string corresponding to the |mode| as defined in the spec:
// https://fetch.spec.whatwg.org/#concept-request-mode.
COMPONENT_EXPORT(NETWORK_CPP)
const char* RequestModeToString(network::mojom::RequestMode mode);
} // namespace network
#endif // SERVICES_NETWORK_PUBLIC_CPP_REQUEST_MODE_H_