| Index: chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_bluetooth_util.cc
|
| diff --git a/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_bluetooth_util.cc b/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_bluetooth_util.cc
|
| index 288115285f053dc78c127c6d487be674982b3527..a8ee859441f370dd633897784c875e84bd6e22a0 100644
|
| --- a/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_bluetooth_util.cc
|
| +++ b/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_bluetooth_util.cc
|
| @@ -6,6 +6,8 @@
|
|
|
| #include "base/callback.h"
|
|
|
| +using device::BluetoothDevice;
|
| +
|
| namespace extensions {
|
| namespace api {
|
| namespace easy_unlock {
|
| @@ -24,6 +26,14 @@ void SeekBluetoothDeviceByAddress(const std::string& device_address,
|
| result.error_message = kApiUnavailable;
|
| callback.Run(result);
|
| }
|
| +
|
| +void ConnectToBluetoothServiceInsecurely(
|
| + device::BluetoothDevice* device,
|
| + const device::BluetoothUUID& uuid,
|
| + const BluetoothDevice::ConnectToServiceCallback& callback,
|
| + const BluetoothDevice::ConnectToServiceErrorCallback& error_callback) {
|
| + error_callback.Run(kApiUnavailable);
|
| +}
|
| #endif // !defined(OS_CHROMEOS)
|
|
|
| } // namespace easy_unlock
|
|
|