// Copyright 2019 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_QUIC_QUIC_HTTP3_LOGGER_H_ #define NET_QUIC_QUIC_HTTP3_LOGGER_H_ #include <stddef.h> #include "base/timer/timer.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/quic/core/http/quic_spdy_session.h" namespace net { // This class is a debug visitor of a quic::QuicSpdySession which logs events // to |net_log| and records histograms. class NET_EXPORT_PRIVATE QuicHttp3Logger : public quic::Http3DebugVisitor { … }; } // namespace net #endif // NET_QUIC_QUIC_HTTP3_LOGGER_H_