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

Unified Diff: device/bluetooth/bluetooth_device_win.cc

Issue 1292263002: bluetooth: Create base class BluetoothDevice::CreateGattConnection impl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bt-adapter-
Patch Set: fix ProximityAuthBluetoothLowEnergyConnectionTest Created 5 years, 3 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
« no previous file with comments | « device/bluetooth/bluetooth_device_win.h ('k') | device/bluetooth/bluetooth_gatt_connection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/bluetooth_device_win.cc
diff --git a/device/bluetooth/bluetooth_device_win.cc b/device/bluetooth/bluetooth_device_win.cc
index f6a8b7784d5d095f4ae57d668e81b59d5ddbb5a5..09b84b38fbf26994356c7b70f554ac17bc7a0209 100644
--- a/device/bluetooth/bluetooth_device_win.cc
+++ b/device/bluetooth/bluetooth_device_win.cc
@@ -147,6 +147,18 @@ std::string BluetoothDeviceWin::GetDeviceName() const {
return name_;
}
+void BluetoothDeviceWin::CreateGattConnectionImpl() {
+ // Windows implementation does not use the default CreateGattConnection
+ // implementation.
+ NOTIMPLEMENTED();
+}
+
+void BluetoothDeviceWin::DisconnectGatt() {
+ // Windows implementation does not use the default CreateGattConnection
+ // implementation.
+ NOTIMPLEMENTED();
+}
+
std::string BluetoothDeviceWin::GetAddress() const {
return address_;
}
@@ -176,6 +188,11 @@ bool BluetoothDeviceWin::IsConnected() const {
return connected_;
}
+bool BluetoothDeviceWin::IsGattConnected() const {
+ NOTIMPLEMENTED();
+ return false;
+}
+
bool BluetoothDeviceWin::IsConnectable() const {
return false;
}
« no previous file with comments | « device/bluetooth/bluetooth_device_win.h ('k') | device/bluetooth/bluetooth_gatt_connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698