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