// Copyright (c) 2017 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_SESSION_NOTIFIER_INTERFACE_H_ #define QUICHE_QUIC_CORE_SESSION_NOTIFIER_INTERFACE_H_ #include "quiche/quic/core/frames/quic_frame.h" #include "quiche/quic/core/quic_time.h" namespace quic { // Pure virtual class to be notified when a packet containing a frame is acked // or lost. class QUICHE_EXPORT SessionNotifierInterface { … }; } // namespace quic #endif // QUICHE_QUIC_CORE_SESSION_NOTIFIER_INTERFACE_H_