// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_SPDY_HEADER_COALESCER_H_ #define NET_SPDY_HEADER_COALESCER_H_ #include <string_view> #include "net/base/net_export.h" #include "net/log/net_log_with_source.h" #include "net/third_party/quiche/src/quiche/common/http/http_header_block.h" #include "net/third_party/quiche/src/quiche/http2/core/spdy_headers_handler_interface.h" namespace net { class NET_EXPORT_PRIVATE HeaderCoalescer : public spdy::SpdyHeadersHandlerInterface { … }; } // namespace net #endif // NET_SPDY_HEADER_COALESCER_H_