Index: content/renderer/bluetooth/web_bluetooth_impl.h |
diff --git a/content/renderer/bluetooth/web_bluetooth_impl.h b/content/renderer/bluetooth/web_bluetooth_impl.h |
index 13d7c7b9a184704d660f643063075bedc227ddee..086266f74aa9954a73f7ce46e2a4f30532cc5caf 100644 |
--- a/content/renderer/bluetooth/web_bluetooth_impl.h |
+++ b/content/renderer/bluetooth/web_bluetooth_impl.h |
@@ -54,12 +54,12 @@ class CONTENT_EXPORT WebBluetoothImpl |
void disconnect(const blink::WebString& device_id) override; |
void getPrimaryServices( |
const blink::WebString& device_id, |
- blink::mojom::WebBluetoothGATTQueryQuantity quantity, |
+ int32_t quantity, |
Jeffrey Yasskin
2016/07/13 20:34:58
Could you comment what enum defines the values of
ortuno
2016/07/13 22:47:28
Done. What do you think?
|
const blink::WebString& services_uuid, |
blink::WebBluetoothGetPrimaryServicesCallbacks* callbacks) override; |
void getCharacteristics( |
const blink::WebString& service_instance_id, |
- blink::mojom::WebBluetoothGATTQueryQuantity quantity, |
+ int32_t quantity, |
const blink::WebString& characteristics_uuid, |
blink::WebBluetoothGetCharacteristicsCallbacks* callbacks) override; |
void readValue(const blink::WebString& characteristic_instance_id, |