chromium/components/download/network/download_http_utils.cc

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

#include "components/download/network/download_http_utils.h"

#include "net/http/http_byte_range.h"
#include "net/http/http_request_headers.h"
#include "net/http/http_util.h"

namespace download {

std::optional<net::HttpByteRange> ParseRangeHeader(
    const net::HttpRequestHeaders& request_headers) {}

bool ValidateRequestHeaders(const net::HttpRequestHeaders& request_headers) {}

}  // namespace download