1 // Copyright 2020 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 
5 #include "content/public/test/bluetooth_test_utils.h"
6 
7 #include "content/browser/bluetooth/bluetooth_adapter_factory_wrapper.h"
8 
9 namespace content {
10 
SetBluetoothAdapter(scoped_refptr<device::BluetoothAdapter> adapter)11 void SetBluetoothAdapter(scoped_refptr<device::BluetoothAdapter> adapter) {
12   BluetoothAdapterFactoryWrapper::Get().SetBluetoothAdapterForTesting(
13       std::move(adapter));
14 }
15 
16 }  // namespace content
17