// Copyright 2014 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_CORE_QUIC_SUSTAINED_BANDWIDTH_RECORDER_H_ #define QUICHE_QUIC_CORE_QUIC_SUSTAINED_BANDWIDTH_RECORDER_H_ #include <cstdint> #include "quiche/quic/core/quic_bandwidth.h" #include "quiche/quic/core/quic_time.h" #include "quiche/quic/platform/api/quic_export.h" #include "quiche/quic/platform/api/quic_logging.h" namespace quic { namespace test { class QuicSustainedBandwidthRecorderPeer; } // namespace test // This class keeps track of a sustained bandwidth estimate to ultimately send // to the client in a server config update message. A sustained bandwidth // estimate is only marked as valid if the QuicSustainedBandwidthRecorder has // been given uninterrupted reliable estimates over a certain period of time. class QUICHE_EXPORT QuicSustainedBandwidthRecorder { … }; } // namespace quic #endif // QUICHE_QUIC_CORE_QUIC_SUSTAINED_BANDWIDTH_RECORDER_H_