Revert 264226 "Reduce dependency of TiclInvalidationService on P..."
[chromium-blink-merge.git] / device / bluetooth / bluetooth_gatt_descriptor.cc
blob3af5a9f541a045e00ea98c4c470020e36d167acd
1 // Copyright 2014 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.
5 #include "device/bluetooth/bluetooth_gatt_descriptor.h"
7 #include "base/logging.h"
9 namespace device {
11 const BluetoothUUID BluetoothGattDescriptor::
12 kCharacteristicExtendedPropertiesUuid("2900");
13 const BluetoothUUID BluetoothGattDescriptor::
14 kCharacteristicUserDescriptionUuid("2901");
15 const BluetoothUUID BluetoothGattDescriptor::
16 kClientCharacteristicConfigurationUuid("2902");
17 const BluetoothUUID BluetoothGattDescriptor::
18 kServerCharacteristicConfigurationUuid("2903");
19 const BluetoothUUID BluetoothGattDescriptor::
20 kCharacteristicPresentationFormatUuid("2904");
21 const BluetoothUUID BluetoothGattDescriptor::
22 kCharacteristicAggregateFormatUuid("2905");
24 BluetoothGattDescriptor::BluetoothGattDescriptor() {
27 BluetoothGattDescriptor::~BluetoothGattDescriptor() {
30 // static
31 BluetoothGattDescriptor* BluetoothGattDescriptor::Create(
32 const BluetoothUUID& uuid,
33 const std::vector<uint8>& value,
34 BluetoothGattCharacteristic::Permissions permissions) {
35 LOG(ERROR) << "Creating local GATT characteristic descriptors currently not "
36 << "supported.";
37 return NULL;
40 } // namespace device