| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "device/bluetooth/bluetooth_local_gatt_characteristic_bluez.h" | 5 #include "device/bluetooth/bluetooth_local_gatt_characteristic_bluez.h" |
| 6 | 6 |
| 7 #include <iostream> | |
| 8 #include <string> | 7 #include <string> |
| 9 | 8 |
| 10 #include "base/callback_forward.h" | 9 #include "base/callback_forward.h" |
| 11 #include "base/logging.h" | 10 #include "base/logging.h" |
| 12 #include "device/bluetooth/bluetooth_gatt_characteristic.h" | 11 #include "device/bluetooth/bluetooth_gatt_characteristic.h" |
| 13 #include "device/bluetooth/bluetooth_gatt_descriptor.h" | 12 #include "device/bluetooth/bluetooth_gatt_descriptor.h" |
| 14 #include "device/bluetooth/bluetooth_local_gatt_service_bluez.h" | 13 #include "device/bluetooth/bluetooth_local_gatt_service_bluez.h" |
| 15 | 14 |
| 16 namespace bluez { | 15 namespace bluez { |
| 17 | 16 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 | 81 |
| 83 void BluetoothLocalGattCharacteristicBlueZ::WriteRemoteCharacteristic( | 82 void BluetoothLocalGattCharacteristicBlueZ::WriteRemoteCharacteristic( |
| 84 const std::vector<uint8_t>& new_value, | 83 const std::vector<uint8_t>& new_value, |
| 85 const base::Closure& callback, | 84 const base::Closure& callback, |
| 86 const ErrorCallback& error_callback) { | 85 const ErrorCallback& error_callback) { |
| 87 // Doesn't apply for a local characteristic. | 86 // Doesn't apply for a local characteristic. |
| 88 NOTIMPLEMENTED(); | 87 NOTIMPLEMENTED(); |
| 89 } | 88 } |
| 90 | 89 |
| 91 } // namespace bluez | 90 } // namespace bluez |
| OLD | NEW |