chromium/third_party/webrtc/logging/rtc_event_log/events/rtc_event_generic_ack_received.cc

/*
 *  Copyright (c) 2019 The WebRTC project authors. All Rights Reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#include "logging/rtc_event_log/events/rtc_event_generic_ack_received.h"

#include <cstdint>
#include <memory>
#include <vector>

#include "absl/memory/memory.h"
#include "absl/types/optional.h"
#include "api/rtc_event_log/rtc_event.h"
#include "rtc_base/time_utils.h"

namespace webrtc {

std::vector<std::unique_ptr<RtcEventGenericAckReceived>>
RtcEventGenericAckReceived::CreateLogs(
    int64_t packet_number,
    const std::vector<AckedPacket>& acked_packets) {}

RtcEventGenericAckReceived::RtcEventGenericAckReceived(
    int64_t timestamp_us,
    int64_t packet_number,
    int64_t acked_packet_number,
    absl::optional<int64_t> receive_acked_packet_time_ms)
    :{}

std::unique_ptr<RtcEventGenericAckReceived> RtcEventGenericAckReceived::Copy()
    const {}

RtcEventGenericAckReceived::RtcEventGenericAckReceived(
    const RtcEventGenericAckReceived& packet) = default;

RtcEventGenericAckReceived::~RtcEventGenericAckReceived() = default;

}  // namespace webrtc