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

Unified Diff: device/bluetooth/bluetooth_device_chromeos.h

Issue 1292263002: bluetooth: Create base class BluetoothDevice::CreateGattConnection impl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bt-adapter-
Patch Set: Updated patchset dependency Created 5 years, 4 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_device_chromeos.h
diff --git a/device/bluetooth/bluetooth_device_chromeos.h b/device/bluetooth/bluetooth_device_chromeos.h
index f937be7465ed94a91fd07e9d5c46a58c78ffe969..02c4b0fc235576c12102924f1159dc47541bd659 100644
--- a/device/bluetooth/bluetooth_device_chromeos.h
+++ b/device/bluetooth/bluetooth_device_chromeos.h
@@ -46,6 +46,7 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothDeviceChromeOS
uint16 GetDeviceID() const override;
bool IsPaired() const override;
bool IsConnected() const override;
+ bool IsGattConnected() const override;
bool IsConnectable() const override;
bool IsConnecting() const override;
UUIDList GetUUIDs() const override;
@@ -101,6 +102,8 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothDeviceChromeOS
protected:
// BluetoothDevice override
std::string GetDeviceName() const override;
+ void CreateGattConnectionImpl() override;
+ void DisconnectGatt() override;
private:
friend class BluetoothAdapterChromeOS;

Powered by Google App Engine
This is Rietveld 408576698