| Index: device/bluetooth/bluez/bluetooth_remote_gatt_characteristic_bluez.cc
 | 
| diff --git a/device/bluetooth/bluez/bluetooth_remote_gatt_characteristic_bluez.cc b/device/bluetooth/bluez/bluetooth_remote_gatt_characteristic_bluez.cc
 | 
| index b1d6a0ef80fae257db6831d27233915019a03b52..b33268d41c64a51830bb465e3c340dd0db188115 100644
 | 
| --- a/device/bluetooth/bluez/bluetooth_remote_gatt_characteristic_bluez.cc
 | 
| +++ b/device/bluetooth/bluez/bluetooth_remote_gatt_characteristic_bluez.cc
 | 
| @@ -42,11 +42,11 @@ std::ostream& operator<<(std::ostream& out, const std::vector<uint8_t> bytes) {
 | 
|  BluetoothRemoteGattCharacteristicBlueZ::BluetoothRemoteGattCharacteristicBlueZ(
 | 
|      BluetoothRemoteGattServiceBlueZ* service,
 | 
|      const dbus::ObjectPath& object_path)
 | 
| -    : BluetoothGattCharacteristicBlueZ(object_path),
 | 
| -      num_notify_sessions_(0),
 | 
| +    : num_notify_sessions_(0),
 | 
|        notify_call_pending_(false),
 | 
|        service_(service),
 | 
|        weak_ptr_factory_(this) {
 | 
| +  object_path_ = object_path;
 | 
|    VLOG(1) << "Creating remote GATT characteristic with identifier: "
 | 
|            << GetIdentifier() << ", UUID: " << GetUUID().canonical_value();
 | 
|    bluez::BluezDBusManager::Get()
 | 
| 
 |