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

Unified Diff: device/bluetooth/bluetooth_advertisement.h

Issue 1317933003: bluetooth-advertising: Fix wrong assignment and append of wrong type (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth-origin
Patch Set: Address armansito's comments Created 5 years, 4 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
« no previous file with comments | « device/BUILD.gn ('k') | device/bluetooth/bluetooth_advertisement_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/bluetooth_advertisement.h
diff --git a/device/bluetooth/bluetooth_advertisement.h b/device/bluetooth/bluetooth_advertisement.h
index 46f19b1410d068d9221bb84163a982b89ae05c6c..eb4cebbd7d04c9f444bac3ddb1f98a0136c67500 100644
--- a/device/bluetooth/bluetooth_advertisement.h
+++ b/device/bluetooth/bluetooth_advertisement.h
@@ -71,10 +71,10 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothAdvertisement
manufacturer_data_ = manufacturer_data.Pass();
}
void set_solicit_uuids(scoped_ptr<UUIDList> solicit_uuids) {
- solicit_uuids = solicit_uuids_.Pass();
+ solicit_uuids_ = solicit_uuids.Pass();
}
void set_service_data(scoped_ptr<ServiceData> service_data) {
- service_data = service_data_.Pass();
+ service_data_ = service_data.Pass();
}
void set_include_tx_power(bool include_tx_power) {
« no previous file with comments | « device/BUILD.gn ('k') | device/bluetooth/bluetooth_advertisement_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698