Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(996)

Unified Diff: third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTCharacteristic.cpp

Issue 2718583002: Refactor WebBluetoothServiceClient in the web_bluetooth.mojom (Closed)
Patch Set: fix content unit tests Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 c462463ac6a8bed03d4d50ec643c311a70d3615c..9efeb90cbf9a8d15fe8b2984f430f8378690ecdd 100644
--- a/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTCharacteristic.cpp
+++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTCharacteristic.cpp
@@ -30,6 +30,7 @@ BluetoothRemoteGATTCharacteristic::BluetoothRemoteGATTCharacteristic(
: ContextLifecycleObserver(context),
m_characteristic(std::move(characteristic)),
m_service(service),
+ m_clientBinding(this),
m_stopped(false),
m_device(device) {
m_properties =
@@ -49,27 +50,29 @@ void BluetoothRemoteGATTCharacteristic::setValue(DOMDataView* domDataView) {
m_value = domDataView;
}
-void BluetoothRemoteGATTCharacteristic::dispatchCharacteristicValueChanged(
- const Vector<uint8_t>& value) {
+void BluetoothRemoteGATTCharacteristic::contextDestroyed(ExecutionContext*) {
+ notifyCharacteristicObjectRemoved();
+}
+
+void BluetoothRemoteGATTCharacteristic::RemoteCharacteristicValueChanged(
+ const WTF::Vector<uint8_t>& value) {
if (!getGatt()->connected())
return;
this->setValue(BluetoothRemoteGATTUtils::ConvertWTFVectorToDataView(value));
dispatchEvent(Event::create(EventTypeNames::characteristicvaluechanged));
}
-void BluetoothRemoteGATTCharacteristic::contextDestroyed(ExecutionContext*) {
- notifyCharacteristicObjectRemoved();
-}
-
void BluetoothRemoteGATTCharacteristic::dispose() {
+ // The pipe to this object must be closed when is marked unreachable to
ortuno 2017/02/24 03:28:52 notifyCharacteristicObjectRemoved is used so that
juncai 2017/03/01 02:04:12 Done.
+ // prevent messages from being dispatched before lazy sweeping.
+ if (m_clientBinding.is_bound())
+ m_clientBinding.Close();
notifyCharacteristicObjectRemoved();
}
void BluetoothRemoteGATTCharacteristic::notifyCharacteristicObjectRemoved() {
if (!m_stopped) {
m_stopped = true;
- m_device->bluetooth()->characteristicObjectRemoved(
- m_characteristic->instance_id);
}
}
@@ -87,12 +90,6 @@ void BluetoothRemoteGATTCharacteristic::addedEventListener(
const AtomicString& eventType,
RegisteredEventListener& registeredListener) {
EventTargetWithInlineData::addedEventListener(eventType, registeredListener);
- // We will also need to unregister a characteristic once all the event
- // listeners have been removed. See http://crbug.com/541390
- if (eventType == EventTypeNames::characteristicvaluechanged) {
- m_device->bluetooth()->registerCharacteristicObject(
- m_characteristic->instance_id, this);
- }
}
void BluetoothRemoteGATTCharacteristic::ReadValueCallback(
@@ -224,7 +221,8 @@ ScriptPromise BluetoothRemoteGATTCharacteristic::writeValue(
void BluetoothRemoteGATTCharacteristic::NotificationsCallback(
ScriptPromiseResolver* resolver,
- mojom::blink::WebBluetoothResult result) {
+ mojom::blink::WebBluetoothResult result,
+ mojom::blink::WebBluetoothCharacteristicClientAssociatedRequest request) {
if (!resolver->getExecutionContext() ||
resolver->getExecutionContext()->isContextDestroyed())
return;
@@ -236,6 +234,8 @@ void BluetoothRemoteGATTCharacteristic::NotificationsCallback(
return;
}
+ m_clientBinding.Bind(std::move(request));
+
if (result == mojom::blink::WebBluetoothResult::SUCCESS) {
resolver->resolve(this);
} else {
@@ -301,7 +301,7 @@ ScriptPromise BluetoothRemoteGATTCharacteristic::stopNotifications(
convertToBaseCallback(
WTF::bind(&BluetoothRemoteGATTCharacteristic::NotificationsCallback,
wrapPersistent(this), wrapPersistent(resolver),
- mojom::blink::WebBluetoothResult::SUCCESS)));
+ mojom::blink::WebBluetoothResult::SUCCESS, nullptr)));
return promise;
}

Powered by Google App Engine
This is Rietveld 408576698