chromium/third_party/webrtc/test/logging/file_log_writer.cc

/*
 *  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 "test/logging/file_log_writer.h"

#include <memory>

#include "absl/strings/string_view.h"
#include "rtc_base/checks.h"
#include "rtc_base/logging.h"
#include "test/testsupport/file_utils.h"

namespace webrtc {
namespace webrtc_impl {

FileLogWriter::FileLogWriter(absl::string_view file_path)
    :{}

FileLogWriter::~FileLogWriter() {}

bool FileLogWriter::IsActive() const {}

bool FileLogWriter::Write(absl::string_view value) {}

void FileLogWriter::Flush() {}

}  // namespace webrtc_impl

FileLogWriterFactory::FileLogWriterFactory(absl::string_view base_path)
    :{}

FileLogWriterFactory::~FileLogWriterFactory() {}

std::unique_ptr<RtcEventLogOutput> FileLogWriterFactory::Create(
    absl::string_view filename) {}
}  // namespace webrtc