OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "device/bluetooth/bluez/bluetooth_local_gatt_characteristic_bluez.h" |
| 6 |
| 7 #include <string> |
| 8 |
| 9 #include "base/logging.h" |
| 10 #include "device/bluetooth/bluez/bluetooth_local_gatt_service_bluez.h" |
| 11 |
| 12 namespace bluez { |
| 13 |
| 14 BluetoothLocalGattCharacteristicBlueZ::BluetoothLocalGattCharacteristicBlueZ( |
| 15 BluetoothLocalGattServiceBlueZ* service, |
| 16 const dbus::ObjectPath& object_path) |
| 17 : BluetoothGattCharacteristicBlueZ(object_path), weak_ptr_factory_(this) { |
| 18 VLOG(1) << "Creating local GATT characteristic with identifier: " |
| 19 << GetIdentifier(); |
| 20 } |
| 21 |
| 22 BluetoothLocalGattCharacteristicBlueZ:: |
| 23 ~BluetoothLocalGattCharacteristicBlueZ() {} |
| 24 |
| 25 } // namespace bluez |
OLD | NEW |