// 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/services/mojo_media_log.h" #include "base/functional/bind.h" #include "base/logging.h" #include "base/task/sequenced_task_runner.h" namespace media { MojoMediaLog::MojoMediaLog( mojo::PendingRemote<mojom::MediaLog> remote_media_log, scoped_refptr<base::SequencedTaskRunner> task_runner) : … { … } MojoMediaLog::~MojoMediaLog() { … } void MojoMediaLog::AddLogRecordLocked(std::unique_ptr<MediaLogRecord> event) { … } } // namespace media