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

Unified Diff: device/bluetooth/bluetooth_adapter_win.h

Issue 1681853003: Add BluetoothRemoteGattServiceWin to BluetoothDeviceWin (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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..fa96af7a9e21fc28d71d11c4c9e95daac6d8dfe6 100644
--- a/device/bluetooth/bluetooth_adapter_win.h
+++ b/device/bluetooth/bluetooth_adapter_win.h
@@ -93,6 +93,16 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothAdapterWin
return socket_thread_;
}
+ // The follwing methods are used to send various GATT observer events to
scheib 2016/02/09 23:24:57 These are copied from the bluez code. Instead of d
gogerald1 2016/02/10 18:00:56 Done.
+ // observers.
+ void NotifyGattServiceAdded(BluetoothDevice* device,
+ BluetoothGattService* service);
+ void NotifyGattServiceRemoved(BluetoothDevice* device,
+ BluetoothGattService* service);
+ void NotifyGattServicesDiscovered(BluetoothDevice* device);
+ void NotifyGattDiscoveryCompleteForService(BluetoothGattService* service);
+ void NotifyGattServiceChanged(BluetoothGattService* service);
+
protected:
// BluetoothAdapter:
void RemovePairingDelegateInternal(

Powered by Google App Engine
This is Rietveld 408576698