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

Unified Diff: third_party/WebKit/Source/modules/bluetooth/BluetoothAttributeInstanceMap.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
Index: third_party/WebKit/Source/modules/bluetooth/BluetoothAttributeInstanceMap.h
diff --git a/third_party/WebKit/Source/modules/bluetooth/BluetoothAttributeInstanceMap.h b/third_party/WebKit/Source/modules/bluetooth/BluetoothAttributeInstanceMap.h
index 0fb529c0e97c65d355eeee68705378d6ca6d35b1..65e55a25bb6362e64caf38a3ae7df7a85014ad30 100644
--- a/third_party/WebKit/Source/modules/bluetooth/BluetoothAttributeInstanceMap.h
+++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothAttributeInstanceMap.h
@@ -30,8 +30,7 @@ class BluetoothAttributeInstanceMap final
// Otherwise returns the BluetoothRemoteGATTService object already
// in the map.
BluetoothRemoteGATTService* getOrCreateRemoteGATTService(
- const String& serviceInstanceId,
- const String& uuid,
+ mojom::blink::WebBluetoothRemoteGATTServicePtr,
bool isPrimary,
const String& deviceInstanceId);
@@ -45,10 +44,8 @@ class BluetoothAttributeInstanceMap final
// the map.
BluetoothRemoteGATTCharacteristic* getOrCreateRemoteGATTCharacteristic(
ExecutionContext*,
- const String& characteristicInstanceId,
const String& serviceInstanceId,
- const String& uuid,
- uint32_t characteristicProperties,
+ mojom::blink::WebBluetoothRemoteGATTCharacteristicPtr,
BluetoothRemoteGATTService*);
// Returns true if a BluetoothRemoteGATTCharacteristic with

Powered by Google App Engine
This is Rietveld 408576698