/* * Copyright 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/rtc_event_processor.h" #include <algorithm> #include <cstdint> #include "absl/types/optional.h" #include "rtc_base/numerics/sequence_number_util.h" namespace webrtc { RtcEventProcessor::RtcEventProcessor() = default; RtcEventProcessor::~RtcEventProcessor() = default; void RtcEventProcessor::ProcessEventsInOrder() { … } bool RtcEventProcessor::Cmp(const RtcEventProcessor::ListPtrType& a, const RtcEventProcessor::ListPtrType& b) { … } } // namespace webrtc