diff options
Diffstat (limited to 'device/bluetooth/test/mock_bluetooth_adapter.cc')
-rw-r--r-- | device/bluetooth/test/mock_bluetooth_adapter.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/device/bluetooth/test/mock_bluetooth_adapter.cc b/device/bluetooth/test/mock_bluetooth_adapter.cc index 1ee00ee..a021bfd 100644 --- a/device/bluetooth/test/mock_bluetooth_adapter.cc +++ b/device/bluetooth/test/mock_bluetooth_adapter.cc @@ -41,4 +41,12 @@ void MockBluetoothAdapter::SetDiscoveryFilter( const ErrorCallback& error_callback) { } +void MockBluetoothAdapter::StartDiscoverySessionWithFilter( + scoped_ptr<BluetoothDiscoveryFilter> discovery_filter, + const DiscoverySessionCallback& callback, + const ErrorCallback& error_callback) { + StartDiscoverySessionWithFilterRaw(discovery_filter.get(), callback, + error_callback); +} + } // namespace device |