// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/media/webrtc/webrtc_log_buffer.h" #include <ostream> #include "base/check_op.h" WebRtcLogBuffer::WebRtcLogBuffer() : … { … } WebRtcLogBuffer::~WebRtcLogBuffer() { … } void WebRtcLogBuffer::Log(const std::string& message) { … } webrtc_logging::PartialCircularBuffer WebRtcLogBuffer::Read() { … } void WebRtcLogBuffer::SetComplete() { … }