| Index: third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.cpp
|
| diff --git a/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.cpp b/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.cpp
|
| index 36592550950446d5f3d220970c2dbcfdd86a2be7..7f71ff632c2084c66b6902354156d051b838828f 100644
|
| --- a/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.cpp
|
| +++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.cpp
|
| @@ -59,6 +59,12 @@ BluetoothDevice::getOrCreateBluetoothRemoteGATTCharacteristic(
|
| context, std::move(webCharacteristic), service);
|
| }
|
|
|
| +bool BluetoothDevice::isValidCharacteristic(
|
| + const String& characteristicInstanceId) {
|
| + return m_attributeInstanceMap->containsCharacteristic(
|
| + characteristicInstanceId);
|
| +}
|
| +
|
| void BluetoothDevice::dispose() {
|
| disconnectGATTIfConnected();
|
| }
|
|
|