chromium/third_party/webrtc/logging/rtc_event_log/events/rtc_event_begin_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_begin_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 RtcEventBeginLog::kType;
constexpr EventParameters RtcEventBeginLog::event_params_;
constexpr FieldParameters RtcEventBeginLog::utc_start_time_params_;

RtcEventBeginLog::RtcEventBeginLog(Timestamp timestamp,
                                   Timestamp utc_start_time)
    :{}

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

RtcEventBeginLog::~RtcEventBeginLog() = default;

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

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

}  // namespace webrtc