bluetooth_local_gatt_characteristic.cc 1.0 KB

123456789101112131415161718192021222324252627282930
  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. #include "device/bluetooth/bluetooth_local_gatt_characteristic.h"
  5. #include "base/notreached.h"
  6. #include "build/build_config.h"
  7. #include "device/bluetooth/bluetooth_local_gatt_service.h"
  8. namespace device {
  9. #if (!BUILDFLAG(IS_LINUX) && !BUILDFLAG(IS_CHROMEOS)) || \
  10. defined(LINUX_WITHOUT_DBUS)
  11. // static
  12. base::WeakPtr<BluetoothLocalGattCharacteristic>
  13. BluetoothLocalGattCharacteristic::Create(const BluetoothUUID& uuid,
  14. Properties properties,
  15. Permissions permissions,
  16. BluetoothLocalGattService* service) {
  17. NOTIMPLEMENTED();
  18. return nullptr;
  19. }
  20. #endif
  21. BluetoothLocalGattCharacteristic::BluetoothLocalGattCharacteristic() = default;
  22. BluetoothLocalGattCharacteristic::~BluetoothLocalGattCharacteristic() = default;
  23. } // namespace device