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

Unified Diff: device/bluetooth/dbus/bluetooth_gatt_characteristic_service_provider.cc

Issue 1954643002: DBus support for attribute properties and permissions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@register_and_events
Patch Set: 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: device/bluetooth/dbus/bluetooth_gatt_characteristic_service_provider.cc
diff --git a/device/bluetooth/dbus/bluetooth_gatt_characteristic_service_provider.cc b/device/bluetooth/dbus/bluetooth_gatt_characteristic_service_provider.cc
index 58d34dba00222e850fe848bb952b9d19924318a7..f5f946c4786e36b0cac830bca9f90aa7a8412edb 100644
--- a/device/bluetooth/dbus/bluetooth_gatt_characteristic_service_provider.cc
+++ b/device/bluetooth/dbus/bluetooth_gatt_characteristic_service_provider.cc
@@ -24,15 +24,13 @@ BluetoothGattCharacteristicServiceProvider::Create(
std::unique_ptr<BluetoothGattAttributeValueDelegate> delegate,
const std::string& uuid,
const std::vector<std::string>& flags,
- const std::vector<std::string>& permissions,
const dbus::ObjectPath& service_path) {
if (!bluez::BluezDBusManager::Get()->IsUsingFakes()) {
return new BluetoothGattCharacteristicServiceProviderImpl(
- bus, object_path, std::move(delegate), uuid, flags, permissions,
- service_path);
+ bus, object_path, std::move(delegate), uuid, flags, service_path);
}
return new FakeBluetoothGattCharacteristicServiceProvider(
- object_path, std::move(delegate), uuid, flags, permissions, service_path);
+ object_path, std::move(delegate), uuid, flags, service_path);
}
} // namespace bluez

Powered by Google App Engine
This is Rietveld 408576698