Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5939)

Unified Diff: device/bluetooth/bluetooth_adapter_win.h

Issue 1690133002: Implement BluetoothRemoteGattServiceWin and related unit tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments and split out of included GATT services Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..bb8f16b8ef0a2bc0f8ab762f015421faa009eef6 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 indicating a device update must be forced in DevicesPolled.
+ 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_;

Powered by Google App Engine
This is Rietveld 408576698