Chromium Code Reviews| Index: device/bluetooth/bluetooth_adapter_win.h |
| diff --git a/device/bluetooth/bluetooth_adapter_win.h b/device/bluetooth/bluetooth_adapter_win.h |
| index 26c895b09598b7b73a980b0339210a50a26c3b90..262975ca3bbb8b5ab96dd1b4eba6105557fb0bc2 100644 |
| --- a/device/bluetooth/bluetooth_adapter_win.h |
| +++ b/device/bluetooth/bluetooth_adapter_win.h |
| @@ -93,6 +93,10 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothAdapterWin |
| return socket_thread_; |
| } |
| + scoped_refptr<BluetoothTaskManagerWin> GetWinBluetoothTaskManager() { |
| + return task_manager_; |
| + } |
| + |
| protected: |
| // BluetoothAdapter: |
| void RemovePairingDelegateInternal( |
| @@ -153,6 +157,9 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothAdapterWin |
| base::ThreadChecker thread_checker_; |
| + // Flag indicates to update device, used by BluetootTestWin. |
|
scheib
2016/02/24 01:39:09
Flag indicating a device update must be forced in
gogerald1
2016/02/24 16:09:06
Done.
|
| + bool force_update_device_for_test_; |
| + |
| // NOTE: This should remain the last member so it'll be destroyed and |
| // invalidate its weak pointers before any other members are destroyed. |
| base::WeakPtrFactory<BluetoothAdapterWin> weak_ptr_factory_; |