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

Unified Diff: third_party/WebKit/Source/modules/bluetooth/Bluetooth.h

Issue 2615093002: Typemap WebBluetoothDeviceId to WTF::String (Closed)
Patch Set: merge master Created 3 years, 11 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/bluetooth/Bluetooth.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/bluetooth/Bluetooth.h
diff --git a/third_party/WebKit/Source/modules/bluetooth/Bluetooth.h b/third_party/WebKit/Source/modules/bluetooth/Bluetooth.h
index 9b058895742b2a324ccf7aae0ce93839d2759f45..2adaa45a38dae40ddcd784c041bed40256ed99d1 100644
--- a/third_party/WebKit/Source/modules/bluetooth/Bluetooth.h
+++ b/third_party/WebKit/Source/modules/bluetooth/Bluetooth.h
@@ -56,11 +56,11 @@ class Bluetooth : public GarbageCollectedFinalized<Bluetooth>,
void RemoteCharacteristicValueChanged(
const WTF::String& characteristicInstanceId,
const WTF::Vector<uint8_t>& value) override;
- void GattServerDisconnected(mojom::blink::WebBluetoothDeviceIdPtr) override;
+ void GattServerDisconnected(const WTF::String& deviceId) override;
- BluetoothDevice* getBluetoothDeviceRepresentingDevice(const String& id,
- const String& name,
- ScriptPromiseResolver*);
+ BluetoothDevice* getBluetoothDeviceRepresentingDevice(
+ mojom::blink::WebBluetoothDevicePtr,
+ ScriptPromiseResolver*);
void RequestDeviceCallback(ScriptPromiseResolver*,
mojom::blink::WebBluetoothResult,
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/bluetooth/Bluetooth.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698