bluetooth_config_service.cc 540 B

1234567891011121314151617
  1. // Copyright 2021 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/bluetooth_config_service.h"
  5. #include "chromeos/services/bluetooth_config/in_process_instance.h"
  6. namespace ash {
  7. void GetBluetoothConfigService(
  8. mojo::PendingReceiver<
  9. chromeos::bluetooth_config::mojom::CrosBluetoothConfig> receiver) {
  10. chromeos::bluetooth_config::BindToInProcessInstance(std::move(receiver));
  11. }
  12. } // namespace ash