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

Unified Diff: content/renderer/bluetooth/bluetooth_dispatcher.cc

Issue 1945823003: bluetooth: Remove BluetoothAdvertisementData (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@my-origin
Patch Set: Fix test Created 4 years, 7 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: content/renderer/bluetooth/bluetooth_dispatcher.cc
diff --git a/content/renderer/bluetooth/bluetooth_dispatcher.cc b/content/renderer/bluetooth/bluetooth_dispatcher.cc
index 418acd3cc3b0bcc9edb090219460baa6a87d1406..e31d13d12b4085f4c45be25ba4e18c2d41ead78c 100644
--- a/content/renderer/bluetooth/bluetooth_dispatcher.cc
+++ b/content/renderer/bluetooth/bluetooth_dispatcher.cc
@@ -150,8 +150,7 @@ void BluetoothDispatcher::OnRequestDeviceSuccess(
pending_requests_.Lookup(request_id)
->onSuccess(base::WrapUnique(new WebBluetoothDevice(
- WebString::fromUTF8(device.id), WebString(device.name),
- device.tx_power, device.rssi, uuids)));
+ WebString::fromUTF8(device.id), WebString(device.name), uuids)));
pending_requests_.Remove(request_id);
}

Powered by Google App Engine
This is Rietveld 408576698