// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef SERVICES_AUDIO_LOG_FACTORY_MANAGER_H_ #define SERVICES_AUDIO_LOG_FACTORY_MANAGER_H_ #include "mojo/public/cpp/bindings/pending_receiver.h" #include "mojo/public/cpp/bindings/receiver_set.h" #include "services/audio/log_factory_adapter.h" #include "services/audio/public/mojom/log_factory_manager.mojom.h" namespace media { class AudioLogFactory; } namespace audio { // This class is used to provide the LogFactoryManager interface. It will // typically be instantiated when needed and remain for the lifetime of the // service. class LogFactoryManager final : public mojom::LogFactoryManager { … }; } // namespace audio #endif // SERVICES_AUDIO_LOG_FACTORY_MANAGER_H_