// Copyright (c) 2018 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_QUIC_TOOLS_QUIC_TCP_LIKE_TRACE_CONVERTER_H_ #define QUICHE_QUIC_TOOLS_QUIC_TCP_LIKE_TRACE_CONVERTER_H_ #include <vector> #include "absl/container/flat_hash_map.h" #include "quiche/quic/core/frames/quic_stream_frame.h" #include "quiche/quic/core/quic_interval.h" #include "quiche/quic/core/quic_interval_set.h" #include "quiche/quic/core/quic_types.h" namespace quic { // This converter converts sent QUIC frames to connection byte offset (just like // TCP byte sequence number). class QuicTcpLikeTraceConverter { … }; } // namespace quic #endif // QUICHE_QUIC_TOOLS_QUIC_TCP_LIKE_TRACE_CONVERTER_H_