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

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

Issue 2650003005: Mark Bluetooth devices connected after they are actually connected (Closed)
Patch Set: mark Bluetooth devices connected after they are actually connected 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 2adaa45a38dae40ddcd784c041bed40256ed99d1..9b39b7ab1528e3e629d36e7691946ad073206e4a 100644
--- a/third_party/WebKit/Source/modules/bluetooth/Bluetooth.h
+++ b/third_party/WebKit/Source/modules/bluetooth/Bluetooth.h
@@ -38,9 +38,9 @@ class Bluetooth : public GarbageCollectedFinalized<Bluetooth>,
mojom::blink::WebBluetoothService* service() { return m_service.get(); }
- void addDevice(const String& deviceId, BluetoothDevice*);
+ void addToConnectedDevicesMap(const String& deviceId, BluetoothDevice*);
- void removeDevice(const String& deviceId);
+ void removeFromConnectedDevicesMap(const String& deviceId);
void registerCharacteristicObject(const String& characteristicInstanceId,
BluetoothRemoteGATTCharacteristic*);
« 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