diff options
Diffstat (limited to 'device/bluetooth/bluetooth_device_chromeos.cc')
-rw-r--r-- | device/bluetooth/bluetooth_device_chromeos.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/device/bluetooth/bluetooth_device_chromeos.cc b/device/bluetooth/bluetooth_device_chromeos.cc index 9d18de0..4f3b5ae 100644 --- a/device/bluetooth/bluetooth_device_chromeos.cc +++ b/device/bluetooth/bluetooth_device_chromeos.cc @@ -78,6 +78,18 @@ std::string BluetoothDeviceChromeOS::GetAddress() const { return address_; } +uint16 BluetoothDeviceChromeOS::GetVendorID() const { + return 0; +} + +uint16 BluetoothDeviceChromeOS::GetProductID() const { + return 0; +} + +uint16 BluetoothDeviceChromeOS::GetDeviceID() const { + return 0; +} + bool BluetoothDeviceChromeOS::IsPaired() const { return paired_ || trusted_; } |