diff options
Diffstat (limited to 'device/bluetooth/bluetooth_device_win.cc')
-rw-r--r-- | device/bluetooth/bluetooth_device_win.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/device/bluetooth/bluetooth_device_win.cc b/device/bluetooth/bluetooth_device_win.cc index cfe9ac9..7779166 100644 --- a/device/bluetooth/bluetooth_device_win.cc +++ b/device/bluetooth/bluetooth_device_win.cc @@ -71,6 +71,18 @@ std::string BluetoothDeviceWin::GetAddress() const { return address_; } +uint16 BluetoothDeviceWin::GetVendorID() const { + return 0; +} + +uint16 BluetoothDeviceWin::GetProductID() const { + return 0; +} + +uint16 BluetoothDeviceWin::GetDeviceID() const { + return 0; +} + bool BluetoothDeviceWin::IsPaired() const { return paired_; } |