chromium/services/network/test/test_utils.cc

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "services/network/test/test_utils.h"

#include "base/strings/stringprintf.h"
#include "build/build_config.h"
#include "net/http/http_util.h"
#include "net/proxy_resolution/proxy_config_with_annotation.h"
#include "services/network/public/cpp/resource_request.h"
#include "services/network/public/mojom/http_raw_headers.mojom.h"
#include "services/network/public/mojom/network_context.mojom.h"
#include "services/network/public/mojom/url_response_head.mojom.h"

#if BUILDFLAG(IS_WIN)
#include "base/dcheck_is_on.h"
#endif

namespace network {

std::string GetUploadData(const network::ResourceRequest& request) {}

mojom::URLResponseHeadPtr CreateURLResponseHead(
    net::HttpStatusCode http_status) {}

void AddCookiesToURLResponseHead(const std::vector<std::string>& cookies,
                                 mojom::URLResponseHead* response_head) {}

mojom::NetworkContextParamsPtr CreateNetworkContextParamsForTesting() {}

}  // namespace network