// Copyright (c) 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef QUICHE_HTTP2_CORE_RECORDING_HEADERS_HANDLER_H_ #define QUICHE_HTTP2_CORE_RECORDING_HEADERS_HANDLER_H_ #include <cstddef> #include "absl/strings/string_view.h" #include "quiche/http2/core/spdy_headers_handler_interface.h" #include "quiche/common/http/http_header_block.h" #include "quiche/common/platform/api/quiche_export.h" namespace spdy { // RecordingHeadersHandler copies the headers emitted from the deframer, and // when needed can forward events to another wrapped handler. class QUICHE_EXPORT RecordingHeadersHandler : public SpdyHeadersHandlerInterface { … }; } // namespace spdy #endif // QUICHE_HTTP2_CORE_RECORDING_HEADERS_HANDLER_H_