audio_config_service.cc 496 B

12345678910111213141516
  1. // Copyright 2022 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "ash/public/cpp/audio_config_service.h"
  5. #include "chromeos/ash/components/audio/in_process_instance.h"
  6. namespace ash {
  7. void GetAudioConfigService(
  8. mojo::PendingReceiver<ash::audio_config::mojom::CrosAudioConfig> receiver) {
  9. ash::audio_config::BindToInProcessInstance(std::move(receiver));
  10. }
  11. } // namespace ash