// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // // HttpRequestHeaders manages the request headers. // It maintains these in a vector of header key/value pairs, thereby maintaining // the order of the headers. This means that any lookups are linear time // operations. #ifndef NET_HTTP_HTTP_REQUEST_HEADERS_H_ #define NET_HTTP_HTTP_REQUEST_HEADERS_H_ #include <memory> #include <optional> #include <string> #include <string_view> #include <vector> #include "base/containers/flat_set.h" #include "base/values.h" #include "net/base/net_export.h" #include "net/filter/source_stream.h" #include "net/log/net_log_capture_mode.h" #include "url/gurl.h" namespace net { class NET_EXPORT HttpRequestHeaders { … }; } // namespace net #endif // NET_HTTP_HTTP_REQUEST_HEADERS_H_