chromium/remoting/protocol/webrtc_event_log_data.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "remoting/protocol/webrtc_event_log_data.h"

#include <utility>

#include "base/logging.h"
#include "base/numerics/safe_conversions.h"

namespace remoting::protocol {

WebrtcEventLogData::WebrtcEventLogData() {}

WebrtcEventLogData::~WebrtcEventLogData() = default;

void WebrtcEventLogData::SetMaxSectionSizeForTest(int max_section_size) {}

void WebrtcEventLogData::SetMaxSectionsForTest(int max_sections) {}

base::circular_deque<WebrtcEventLogData::LogSection>
WebrtcEventLogData::TakeLogData() {}

void WebrtcEventLogData::Write(std::string_view log_event) {}

void WebrtcEventLogData::Clear() {}

bool WebrtcEventLogData::NeedNewSection(size_t log_event_size) const {}

void WebrtcEventLogData::CreateNewSection() {}

}  // namespace remoting::protocol