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

Unified Diff: third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothGATTRemoteServer.h

Issue 1527853002: bluetooth: Add disconnect function (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth-device-identifier
Patch Set: Fix test that fails after upstream change. Created 4 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/public/platform/modules/bluetooth/WebBluetoothGATTRemoteServer.h
diff --git a/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothGATTRemoteServer.h b/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothGATTRemoteServer.h
index db673003c9d92a6b1dcaac6cd8c9ee023a010cb0..54d4ae627a8b408b32553da11633a95f9df7fab8 100644
--- a/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothGATTRemoteServer.h
+++ b/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothGATTRemoteServer.h
@@ -10,17 +10,17 @@
namespace blink {
struct WebBluetoothGATTRemoteServer {
- WebBluetoothGATTRemoteServer(const WebString& deviceInstanceID,
+ WebBluetoothGATTRemoteServer(const WebString& deviceId,
bool connected)
- : deviceInstanceID(deviceInstanceID)
+ : deviceId(deviceId)
, connected(connected)
{
}
// Members corresponding to BluetoothGATTRemoteServer attributes as
// specified in the IDL.
- const WebString deviceInstanceID;
- const bool connected;
+ const WebString deviceId;
+ bool connected;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/public/platform/modules/bluetooth/WebBluetooth.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698