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

Unified Diff: device/bluetooth/bluetooth_device_chromeos.cc

Issue 336933002: device/bluetooth: Introduce BluetoothGattConnection. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: GattConnectionCallback now takes in a scoped_ptr Created 6 years, 6 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.cc
diff --git a/device/bluetooth/bluetooth_device_chromeos.cc b/device/bluetooth/bluetooth_device_chromeos.cc
index f083ebe47ac674bd4fb04278bedf9c858dddd09e..ce73ffe38b0a6cea76c7c41b2166b64ef5d8b381 100644
--- a/device/bluetooth/bluetooth_device_chromeos.cc
+++ b/device/bluetooth/bluetooth_device_chromeos.cc
@@ -450,6 +450,13 @@ void BluetoothDeviceChromeOS::ConnectToService(
error_callback);
}
+void BluetoothDeviceChromeOS::CreateGattConnection(
+ const GattConnectionCallback& callback,
+ const ConnectErrorCallback& error_callback) {
+ // TODO(armansito): Implement.
+ error_callback.Run(ERROR_UNKNOWN);
+}
+
void BluetoothDeviceChromeOS::StartConnectionMonitor(
const base::Closure& callback,
const ErrorCallback& error_callback) {

Powered by Google App Engine
This is Rietveld 408576698