Index: third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTCharacteristic.cpp |
diff --git a/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTCharacteristic.cpp b/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTCharacteristic.cpp |
index 9a557735190a9c677f2436db682a1c7318dae5a2..49afc52a55db0975f90dc16405d68650860dd2e6 100644 |
--- a/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTCharacteristic.cpp |
+++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTCharacteristic.cpp |
@@ -42,12 +42,10 @@ DOMDataView* ConvertWTFVectorToDataView(const Vector<uint8_t>& wtfVector) { |
BluetoothRemoteGATTCharacteristic::BluetoothRemoteGATTCharacteristic( |
ExecutionContext* context, |
- const String& serviceInstanceId, |
mojom::blink::WebBluetoothRemoteGATTCharacteristicPtr characteristic, |
BluetoothRemoteGATTService* service, |
BluetoothDevice* device) |
: ContextLifecycleObserver(context), |
- m_serviceInstanceId(serviceInstanceId), |
m_characteristic(std::move(characteristic)), |
m_service(service), |
m_stopped(false), |
@@ -58,12 +56,11 @@ BluetoothRemoteGATTCharacteristic::BluetoothRemoteGATTCharacteristic( |
BluetoothRemoteGATTCharacteristic* BluetoothRemoteGATTCharacteristic::create( |
ExecutionContext* context, |
- const String& serviceInstanceId, |
mojom::blink::WebBluetoothRemoteGATTCharacteristicPtr characteristic, |
BluetoothRemoteGATTService* service, |
BluetoothDevice* device) { |
return new BluetoothRemoteGATTCharacteristic( |
- context, serviceInstanceId, std::move(characteristic), service, device); |
+ context, std::move(characteristic), service, device); |
} |
void BluetoothRemoteGATTCharacteristic::setValue(DOMDataView* domDataView) { |