| 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 "components/arc/test/fake_bluetooth_instance.h" | 5 #include "components/arc/test/fake_bluetooth_instance.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 namespace arc { | 9 namespace arc { |
| 10 | 10 |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 bool is_long, | 105 bool is_long, |
| 106 const RequestGattReadCallback& callback) {} | 106 const RequestGattReadCallback& callback) {} |
| 107 | 107 |
| 108 void FakeBluetoothInstance::RequestGattWrite( | 108 void FakeBluetoothInstance::RequestGattWrite( |
| 109 mojom::BluetoothAddressPtr address, | 109 mojom::BluetoothAddressPtr address, |
| 110 int32_t attribute_handle, | 110 int32_t attribute_handle, |
| 111 int32_t offset, | 111 int32_t offset, |
| 112 mojo::Array<uint8_t> value, | 112 mojo::Array<uint8_t> value, |
| 113 const RequestGattWriteCallback& callback) {} | 113 const RequestGattWriteCallback& callback) {} |
| 114 | 114 |
| 115 void FakeBluetoothInstance::OnGetSdpRecords( |
| 116 mojom::BluetoothStatus status, |
| 117 mojom::BluetoothAddressPtr remove_addr, |
| 118 mojom::BluetoothUUIDPtr target_uuid, |
| 119 mojo::Array<mojom::BluetoothSdpRecordPtr> records) {} |
| 120 |
| 115 } // namespace arc | 121 } // namespace arc |
| OLD | NEW |