| Index: chromeos/dbus/fake_bluetooth_gatt_descriptor_service_provider.cc
|
| diff --git a/chromeos/dbus/fake_bluetooth_gatt_descriptor_service_provider.cc b/chromeos/dbus/fake_bluetooth_gatt_descriptor_service_provider.cc
|
| index bb4c55e28791d7dc3055bbe3c33439b9e4777018..9779c3aee0eae1d0d236809bf81d0888de3f43ec 100644
|
| --- a/chromeos/dbus/fake_bluetooth_gatt_descriptor_service_provider.cc
|
| +++ b/chromeos/dbus/fake_bluetooth_gatt_descriptor_service_provider.cc
|
| @@ -29,8 +29,9 @@ FakeBluetoothGattDescriptorServiceProvider::
|
| DCHECK(characteristic_path_.IsValid());
|
| DCHECK(!uuid.empty());
|
| DCHECK(delegate_);
|
| - DCHECK(base::StartsWithASCII(object_path_.value(),
|
| - characteristic_path_.value() + "/", true));
|
| + DCHECK(base::StartsWith(object_path_.value(),
|
| + characteristic_path_.value() + "/",
|
| + base::CompareCase::SENSITIVE));
|
|
|
| // TODO(armansito): Do something with |permissions|.
|
|
|
|
|