| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/memory/ptr_util.h" |
| 5 #include "components/arc/test/fake_bluetooth_instance.h" | 6 #include "components/arc/test/fake_bluetooth_instance.h" |
| 6 | 7 |
| 7 #include <utility> | 8 #include <utility> |
| 8 | 9 |
| 9 namespace arc { | 10 namespace arc { |
| 10 | 11 |
| 11 FakeBluetoothInstance::FakeBluetoothInstance() = default; | 12 FakeBluetoothInstance::FakeBluetoothInstance() = default; |
| 12 FakeBluetoothInstance::~FakeBluetoothInstance() = default; | 13 FakeBluetoothInstance::~FakeBluetoothInstance() = default; |
| 13 | 14 |
| 14 FakeBluetoothInstance::GattDBResult::GattDBResult( | 15 FakeBluetoothInstance::GattDBResult::GattDBResult( |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 const std::vector<uint8_t>& value, | 113 const std::vector<uint8_t>& value, |
| 113 const RequestGattWriteCallback& callback) {} | 114 const RequestGattWriteCallback& callback) {} |
| 114 | 115 |
| 115 void FakeBluetoothInstance::OnGetSdpRecords( | 116 void FakeBluetoothInstance::OnGetSdpRecords( |
| 116 mojom::BluetoothStatus status, | 117 mojom::BluetoothStatus status, |
| 117 mojom::BluetoothAddressPtr remove_addr, | 118 mojom::BluetoothAddressPtr remove_addr, |
| 118 const device::BluetoothUUID& target_uuid, | 119 const device::BluetoothUUID& target_uuid, |
| 119 std::vector<mojom::BluetoothSdpRecordPtr> records) {} | 120 std::vector<mojom::BluetoothSdpRecordPtr> records) {} |
| 120 | 121 |
| 121 } // namespace arc | 122 } // namespace arc |
| OLD | NEW |