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

Unified Diff: components/proximity_auth/ble/bluetooth_low_energy_characteristics_finder_unittest.cc

Issue 1548203002: Convert Pass()→std::move() in //components/[n-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bad headers 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: components/proximity_auth/ble/bluetooth_low_energy_characteristics_finder_unittest.cc
diff --git a/components/proximity_auth/ble/bluetooth_low_energy_characteristics_finder_unittest.cc b/components/proximity_auth/ble/bluetooth_low_energy_characteristics_finder_unittest.cc
index 090cd2bf792dca04e417092e9e53c37f3a01ba8b..934393b14cc854532a28918844dc125e6144a009 100644
--- a/components/proximity_auth/ble/bluetooth_low_energy_characteristics_finder_unittest.cc
+++ b/components/proximity_auth/ble/bluetooth_low_energy_characteristics_finder_unittest.cc
@@ -111,7 +111,7 @@ class ProximityAuthBluetoothLowEnergyCharacteristicFinderTest
ON_CALL(*characteristic.get(), GetIdentifier()).WillByDefault(Return(id));
ON_CALL(*characteristic.get(), GetService())
.WillByDefault(Return(service_.get()));
- return characteristic.Pass();
+ return characteristic;
}
scoped_refptr<device::MockBluetoothAdapter> adapter_;

Powered by Google App Engine
This is Rietveld 408576698