Index: device/bluetooth/bluetooth_local_gatt_descriptor.cc |
diff --git a/device/bluetooth/bluetooth_local_gatt_descriptor.cc b/device/bluetooth/bluetooth_local_gatt_descriptor.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d13ab4321ad50c8313746e7f662caebf66b4639b |
--- /dev/null |
+++ b/device/bluetooth/bluetooth_local_gatt_descriptor.cc |
@@ -0,0 +1,26 @@ |
+// 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_descriptor.h" |
+ |
+#include "base/logging.h" |
+ |
+namespace device { |
+ |
+BluetoothLocalGattDescriptor::BluetoothLocalGattDescriptor() {} |
+ |
+BluetoothLocalGattDescriptor::~BluetoothLocalGattDescriptor() {} |
+ |
+// static |
+BluetoothLocalGattDescriptor* BluetoothLocalGattDescriptor::Create( |
+ const BluetoothUUID& uuid, |
+ const std::vector<uint8_t>& value, |
+ BluetoothGattCharacteristic::Permissions permissions, |
+ BluetoothLocalGattCharacteristic* characteristic) { |
+ LOG(ERROR) << "Creating local GATT characteristic descriptors currently not " |
+ << "supported."; |
+ return NULL; |
+} |
+ |
+} // namespace device |