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

Unified Diff: device/bluetooth/dbus/bluetooth_gatt_descriptor_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_descriptor_service_provider.cc
diff --git a/device/bluetooth/dbus/bluetooth_gatt_descriptor_service_provider.cc b/device/bluetooth/dbus/bluetooth_gatt_descriptor_service_provider.cc
index 5f85d9bf9e117b03639a152eadd55ea81d873330..86ee66127e50826be293c424f7ff6ba76f9d03fb 100644
--- a/device/bluetooth/dbus/bluetooth_gatt_descriptor_service_provider.cc
+++ b/device/bluetooth/dbus/bluetooth_gatt_descriptor_service_provider.cc
@@ -23,15 +23,15 @@ BluetoothGattDescriptorServiceProvider::Create(
const dbus::ObjectPath& object_path,
std::unique_ptr<BluetoothGattAttributeValueDelegate> delegate,
const std::string& uuid,
- const std::vector<std::string>& permissions,
+ const std::vector<std::string>& flags,
const dbus::ObjectPath& characteristic_path) {
if (!bluez::BluezDBusManager::Get()->IsUsingFakes()) {
return new BluetoothGattDescriptorServiceProviderImpl(
- bus, object_path, std::move(delegate), uuid, permissions,
+ bus, object_path, std::move(delegate), uuid, flags,
characteristic_path);
}
return new FakeBluetoothGattDescriptorServiceProvider(
- object_path, std::move(delegate), uuid, permissions, characteristic_path);
+ object_path, std::move(delegate), uuid, flags, characteristic_path);
}
} // namespace bluez

Powered by Google App Engine
This is Rietveld 408576698