root/device/bluetooth/bluetooth_gatt_characteristic.cc

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. Create

// 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

/* [<][>][^][v][top][bottom][index][help] */