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

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

Issue 1926623002: bluetooth: Remove the device info and device class fields from BluetoothDevice. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/BluetoothDevice.h
diff --git a/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.h b/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.h
index f609ae37c23ab615f80cd0d20a82e6cd9d138c5d..7d5e1db74939c4458fad3010859dc7a78db52d43 100644
--- a/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.h
+++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.h
@@ -73,11 +73,6 @@ public:
String id() { return m_webDevice->id; }
String name() { return m_webDevice->name; }
BluetoothAdvertisingData* adData() { return m_adData; }
- unsigned deviceClass(bool& isNull);
- String vendorIDSource();
- unsigned vendorID(bool& isNull);
- unsigned productID(bool& isNull);
- unsigned productVersion(bool& isNull);
BluetoothRemoteGATTServer* gatt() { return m_gatt; }
Vector<String> uuids();
// TODO(ortuno): Remove connectGATT

Powered by Google App Engine
This is Rietveld 408576698