// 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. #ifndef MEDIA_MOJO_SERVICES_MOJO_MEDIA_LOG_H_ #define MEDIA_MOJO_SERVICES_MOJO_MEDIA_LOG_H_ #include <memory> #include "base/memory/scoped_refptr.h" #include "base/memory/weak_ptr.h" #include "base/task/sequenced_task_runner.h" #include "media/base/media_log.h" #include "media/mojo/mojom/media_log.mojom.h" #include "mojo/public/cpp/bindings/pending_remote.h" #include "mojo/public/cpp/bindings/remote.h" namespace media { // Client side for a MediaLog via mojo. class MojoMediaLog final : public MediaLog { … }; } // namespace media #endif // MEDIA_MOJO_SERVICES_MOJO_MEDIA_LOG_H_