blob: 53b1d720e38dddd4ff8bfed809268312ae3f3303 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "device/bluetooth/bluetooth_local_gatt_service.h"
#include "build/build_config.h"
namespace device {
#if (!defined(OS_LINUX) && !defined(OS_CHROMEOS)) || defined(LINUX_WITHOUT_DBUS)
// static
base::WeakPtr<BluetoothLocalGattService> BluetoothLocalGattService::Create(
BluetoothAdapter* adapter,
const BluetoothUUID& uuid,
bool is_primary,
BluetoothLocalGattService* included_service,
BluetoothLocalGattService::Delegate* delegate) {
NOTIMPLEMENTED();
return nullptr;
}
#endif
BluetoothLocalGattService::BluetoothLocalGattService() = default;
BluetoothLocalGattService::~BluetoothLocalGattService() = default;
} // namespace device