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

Unified Diff: device/bluetooth/bluetooth_remote_gatt_service_win.cc

Issue 1872943002: Add support for local services/characteristics/descriptors. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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_remote_gatt_service_bluez.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/bluetooth_remote_gatt_service_win.cc
diff --git a/device/bluetooth/bluetooth_remote_gatt_service_win.cc b/device/bluetooth/bluetooth_remote_gatt_service_win.cc
index 95e43cc2bc32bd5ebf59a1c4574811b4ba04da92..dd0e71fc12ac935dd681123aa29ce470ab4604bd 100644
--- a/device/bluetooth/bluetooth_remote_gatt_service_win.cc
+++ b/device/bluetooth/bluetooth_remote_gatt_service_win.cc
@@ -118,14 +118,14 @@ void BluetoothRemoteGattServiceWin::Register(
const base::Closure& callback,
const ErrorCallback& error_callback) {
NOTIMPLEMENTED();
- error_callback.Run();
+ error_callback.Run(GATT_ERROR_NOT_SUPPORTED);
}
void BluetoothRemoteGattServiceWin::Unregister(
const base::Closure& callback,
const ErrorCallback& error_callback) {
NOTIMPLEMENTED();
- error_callback.Run();
+ error_callback.Run(GATT_ERROR_NOT_SUPPORTED);
}
void BluetoothRemoteGattServiceWin::GattCharacteristicDiscoveryComplete(
« no previous file with comments | « device/bluetooth/bluetooth_remote_gatt_service_bluez.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698