| 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
|
|
|