// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "media/mojo/clients/mojo_media_log_service.h" #include "base/logging.h" #include "media/base/media_log_record.h" namespace media { MojoMediaLogService::MojoMediaLogService( std::unique_ptr<media::MediaLog> media_log) : … { … } MojoMediaLogService::~MojoMediaLogService() { … } void MojoMediaLogService::AddLogRecord(const MediaLogRecord& event) { … } } // namespace media