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

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

Issue 2456613002: Remove BluetoothDevice.uuids attribute from WebBluetooth (Closed)
Patch Set: address more comments Created 4 years, 2 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.cpp
diff --git a/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.cpp b/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.cpp
index bd9fb21c68cffcfa783e8714d3f65b32cc872b07..84d7a4a2043681c2fa48bb1c8148c8dd51895883 100644
--- a/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.cpp
+++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.cpp
@@ -76,11 +76,4 @@ DEFINE_TRACE(BluetoothDevice) {
visitor->trace(m_gatt);
}
-Vector<String> BluetoothDevice::uuids() {
- Vector<String> uuids(m_webDevice->uuids.size());
- for (size_t i = 0; i < m_webDevice->uuids.size(); ++i)
- uuids[i] = m_webDevice->uuids[i];
- return uuids;
-}
-
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698