blob: 47182a5d9f96d71d3bda83f701fe2ab29c346dd0 [file] [log] [blame]
// Copyright 2014 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_gatt_characteristic.h"
#include "base/logging.h"
namespace device {
BluetoothGattCharacteristic::BluetoothGattCharacteristic() {
}
BluetoothGattCharacteristic::~BluetoothGattCharacteristic() {
}
// static
BluetoothGattCharacteristic* BluetoothGattCharacteristic::Create(
const BluetoothUUID& uuid,
const std::vector<uint8>& value,
Properties properties,
Permissions permissions) {
LOG(ERROR) << "Creating local GATT characteristics currently not supported.";
return NULL;
}
} // namespace device