| // Copyright 2018 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "services/audio/public/cpp/device_factory.h" |
| |
| #include <memory> |
| #include <utility> |
| |
| #include "base/bind.h" |
| #include "base/threading/platform_thread.h" |
| #include "services/audio/public/cpp/input_ipc.h" |
| |
| namespace audio { |
| |
| scoped_refptr<media::AudioCapturerSource> CreateInputDevice( |
| mojo::PendingRemote<media::mojom::AudioStreamFactory> stream_factory, |
| const std::string& device_id, |
| DeadStreamDetection detect_dead_stream, |
| mojo::PendingRemote<media::mojom::AudioLog> log) { |
| std::unique_ptr<media::AudioInputIPC> ipc = std::make_unique<InputIPC>( |
| std::move(stream_factory), device_id, std::move(log)); |
| return base::MakeRefCounted<media::AudioInputDevice>( |
| std::move(ipc), media::AudioInputDevice::Purpose::kUserInput, |
| detect_dead_stream); |
| } |
| |
| scoped_refptr<media::AudioCapturerSource> CreateInputDevice( |
| mojo::PendingRemote<media::mojom::AudioStreamFactory> stream_factory, |
| const std::string& device_id, |
| DeadStreamDetection detect_dead_stream) { |
| return CreateInputDevice(std::move(stream_factory), device_id, |
| detect_dead_stream, mojo::NullRemote()); |
| } |
| |
| } // namespace audio |