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

/*
 *  Copyright (c) 2021 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_end_log.h"

#include <cstdint>
#include <string>
#include <vector>

#include "absl/strings/string_view.h"
#include "api/array_view.h"
#include "api/rtc_event_log/rtc_event.h"
#include "api/units/timestamp.h"
#include "logging/rtc_event_log/events/rtc_event_field_encoding.h"
#include "logging/rtc_event_log/events/rtc_event_field_encoding_parser.h"
#include "logging/rtc_event_log/events/rtc_event_log_parse_status.h"

namespace webrtc {
constexpr RtcEvent::Type RtcEventEndLog::kType;
constexpr EventParameters RtcEventEndLog::event_params_;

RtcEventEndLog::RtcEventEndLog(Timestamp timestamp)
    :{}

RtcEventEndLog::RtcEventEndLog(const RtcEventEndLog& other)
    :{}

RtcEventEndLog::~RtcEventEndLog() = default;

std::string RtcEventEndLog::Encode(rtc::ArrayView<const RtcEvent*> batch) {}

RtcEventLogParseStatus RtcEventEndLog::Parse(
    absl::string_view encoded_bytes,
    bool batched,
    std::vector<LoggedStopEvent>& output) {}

}  // namespace webrtc