| Index: device/bluetooth/bluetooth_device_mac.mm
|
| diff --git a/device/bluetooth/bluetooth_device_mac.mm b/device/bluetooth/bluetooth_device_mac.mm
|
| index 85d142637f33891100b14e35f32393343eca3b0f..2d40c868e99d824a542eb298a5d0d5c419d81e80 100644
|
| --- a/device/bluetooth/bluetooth_device_mac.mm
|
| +++ b/device/bluetooth/bluetooth_device_mac.mm
|
| @@ -81,6 +81,18 @@ std::string BluetoothDeviceMac::GetAddress() const {
|
| return base::SysNSStringToUTF8([device_ addressString]);
|
| }
|
|
|
| +uint16 BluetoothDeviceMac::GetVendorID() const {
|
| + return 0;
|
| +}
|
| +
|
| +uint16 BluetoothDeviceMac::GetProductID() const {
|
| + return 0;
|
| +}
|
| +
|
| +uint16 BluetoothDeviceMac::GetDeviceID() const {
|
| + return 0;
|
| +}
|
| +
|
| bool BluetoothDeviceMac::IsPaired() const {
|
| return [device_ isPaired];
|
| }
|
|
|