| Index: device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc
|
| diff --git a/device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc b/device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc
|
| index aec99968c82741c815827abe2ca6c946067be558..6759f46bf6dee3e3ae2f86d5000522610891696a 100644
|
| --- a/device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc
|
| +++ b/device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc
|
| @@ -9,7 +9,7 @@
|
| #include "base/bind.h"
|
| #include "base/memory/ptr_util.h"
|
| #include "device/bluetooth/bluetooth_adapter_win.h"
|
| -#include "device/bluetooth/bluetooth_gatt_notify_session_win.h"
|
| +#include "device/bluetooth/bluetooth_gatt_notify_session.h"
|
| #include "device/bluetooth/bluetooth_remote_gatt_descriptor_win.h"
|
| #include "device/bluetooth/bluetooth_remote_gatt_service_win.h"
|
| #include "device/bluetooth/bluetooth_task_manager_win.h"
|
| @@ -145,8 +145,8 @@ void BluetoothRemoteGattCharacteristicWin::StartNotifySession(
|
| DCHECK(ui_task_runner_->RunsTasksOnCurrentThread());
|
|
|
| if (IsNotifying()) {
|
| - std::unique_ptr<BluetoothGattNotifySessionWin> notify_session(
|
| - new BluetoothGattNotifySessionWin(weak_ptr_factory_.GetWeakPtr()));
|
| + std::unique_ptr<BluetoothGattNotifySession> notify_session(
|
| + new BluetoothGattNotifySession(weak_ptr_factory_.GetWeakPtr()));
|
| ui_task_runner_->PostTask(
|
| FROM_HERE,
|
| base::Bind(callback, base::Passed(std::move(notify_session))));
|
| @@ -197,6 +197,12 @@ void BluetoothRemoteGattCharacteristicWin::StartNotifySession(
|
| gatt_event_registeration_in_progress_ = true;
|
| }
|
|
|
| +void BluetoothRemoteGattCharacteristicWin::StopNotifySession(
|
| + BluetoothGattNotifySession* session,
|
| + const base::Closure& callback) {
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| void BluetoothRemoteGattCharacteristicWin::ReadRemoteCharacteristic(
|
| const ValueCallback& callback,
|
| const ErrorCallback& error_callback) {
|
| @@ -262,6 +268,22 @@ uint16_t BluetoothRemoteGattCharacteristicWin::GetAttributeHandle() const {
|
| return characteristic_info_->AttributeHandle;
|
| }
|
|
|
| +void BluetoothRemoteGattCharacteristicWin::SubscribeToNotifications(
|
| + BluetoothRemoteGattDescriptor* ccc_descriptor,
|
| + const base::Closure& callback,
|
| + const ErrorCallback& error_callback) {
|
| + // TODO(http://crbug.com/636270): Implement this method
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| +void BluetoothRemoteGattCharacteristicWin::UnsubscribeFromNotifications(
|
| + BluetoothRemoteGattDescriptor* ccc_descriptor,
|
| + const base::Closure& callback,
|
| + const ErrorCallback& error_callback) {
|
| + // TODO(http://crbug.com/636270): Implement this method
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| void BluetoothRemoteGattCharacteristicWin::OnGetIncludedDescriptorsCallback(
|
| std::unique_ptr<BTH_LE_GATT_DESCRIPTOR> descriptors,
|
| uint16_t num,
|
| @@ -422,7 +444,7 @@ void BluetoothRemoteGattCharacteristicWin::GattEventRegistrationCallback(
|
| gatt_event_handle_ = event_handle;
|
| for (const auto& callback : callbacks) {
|
| callback.first.Run(base::WrapUnique(
|
| - new BluetoothGattNotifySessionWin(weak_ptr_factory_.GetWeakPtr())));
|
| + new BluetoothGattNotifySession(weak_ptr_factory_.GetWeakPtr())));
|
| }
|
| } else {
|
| for (const auto& callback : callbacks)
|
|
|