summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/bluetooth/bluetooth_remote_gatt_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/modules/bluetooth/bluetooth_remote_gatt_service.h')
-rw-r--r--chromium/third_party/blink/renderer/modules/bluetooth/bluetooth_remote_gatt_service.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/chromium/third_party/blink/renderer/modules/bluetooth/bluetooth_remote_gatt_service.h b/chromium/third_party/blink/renderer/modules/bluetooth/bluetooth_remote_gatt_service.h
index 4b351c0cf85..0ae8905a417 100644
--- a/chromium/third_party/blink/renderer/modules/bluetooth/bluetooth_remote_gatt_service.h
+++ b/chromium/third_party/blink/renderer/modules/bluetooth/bluetooth_remote_gatt_service.h
@@ -16,6 +16,7 @@
namespace blink {
+class ExceptionState;
class ScriptPromise;
class ScriptState;
@@ -37,7 +38,7 @@ class BluetoothRemoteGATTService final : public ScriptWrappable {
BluetoothDevice*);
// Interface required by garbage collection.
- void Trace(blink::Visitor*) override;
+ void Trace(Visitor*) override;
// IDL exposed interface:
String uuid() { return service_->uuid; }
@@ -64,6 +65,7 @@ class BluetoothRemoteGATTService final : public ScriptWrappable {
ScriptPromise GetCharacteristicsImpl(
ScriptState*,
+ ExceptionState&,
mojom::blink::WebBluetoothGATTQueryQuantity,
const String& characteristic_uuid = String());