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

Unified Diff: device/bluetooth/bluetooth_advertisement_bluez.cc

Issue 1544323002: Convert Pass()→std::move() in //device (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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: device/bluetooth/bluetooth_advertisement_bluez.cc
diff --git a/device/bluetooth/bluetooth_advertisement_bluez.cc b/device/bluetooth/bluetooth_advertisement_bluez.cc
index 97b78daac0da207ffeea7325ccc24ae8d8be4148..869692f84ff4999968a1467a20a6524124352f74 100644
--- a/device/bluetooth/bluetooth_advertisement_bluez.cc
+++ b/device/bluetooth/bluetooth_advertisement_bluez.cc
@@ -89,8 +89,8 @@ BluetoothAdvertisementBlueZ::BluetoothAdvertisementBlueZ(
static_cast<
bluez::BluetoothLEAdvertisementServiceProvider::AdvertisementType>(
data->type()),
- data->service_uuids().Pass(), data->manufacturer_data().Pass(),
- data->solicit_uuids().Pass(), data->service_data().Pass());
+ data->service_uuids(), data->manufacturer_data(), data->solicit_uuids(),
+ data->service_data());
}
void BluetoothAdvertisementBlueZ::Register(
« no previous file with comments | « device/bluetooth/bluetooth_advertisement.h ('k') | device/bluetooth/bluetooth_advertisement_bluez_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698