bluetooth_local_gatt_service.cc 847 B

1234567891011121314151617181920212223242526272829
  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_service.h"
  5. #include "build/build_config.h"
  6. namespace device {
  7. #if (!BUILDFLAG(IS_LINUX) && !BUILDFLAG(IS_CHROMEOS)) || \
  8. defined(LINUX_WITHOUT_DBUS)
  9. // static
  10. base::WeakPtr<BluetoothLocalGattService> BluetoothLocalGattService::Create(
  11. BluetoothAdapter* adapter,
  12. const BluetoothUUID& uuid,
  13. bool is_primary,
  14. BluetoothLocalGattService* included_service,
  15. BluetoothLocalGattService::Delegate* delegate) {
  16. NOTIMPLEMENTED();
  17. return nullptr;
  18. }
  19. #endif
  20. BluetoothLocalGattService::BluetoothLocalGattService() = default;
  21. BluetoothLocalGattService::~BluetoothLocalGattService() = default;
  22. } // namespace device