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

Unified Diff: content/common/bluetooth/bluetooth_messages.h

Issue 1775953004: bluetooth: Move writeValue to mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@my-origin
Patch Set: Address scheib's comments Created 4 years, 9 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 | « content/child/mojo/type_converters.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/bluetooth/bluetooth_messages.h
diff --git a/content/common/bluetooth/bluetooth_messages.h b/content/common/bluetooth/bluetooth_messages.h
index 8863475670119411910546ca08c9f884db2323c9..68b51e34f6182a151fa5dfe22ceea4f817e523bf 100644
--- a/content/common/bluetooth/bluetooth_messages.h
+++ b/content/common/bluetooth/bluetooth_messages.h
@@ -193,19 +193,6 @@ IPC_MESSAGE_CONTROL3(BluetoothMsg_ReadCharacteristicValueError,
int /* request_id */,
blink::WebBluetoothError /* result */)
-// Informs the renderer that the value has been successfully written to
-// the characteristic.
-IPC_MESSAGE_CONTROL2(BluetoothMsg_WriteCharacteristicValueSuccess,
- int /* thread_id */,
- int /* request_id */)
-
-// Informs the renderer that an error occurred while writing a value to a
-// characteristic.
-IPC_MESSAGE_CONTROL3(BluetoothMsg_WriteCharacteristicValueError,
- int /* thread_id */,
- int /* request_id */,
- blink::WebBluetoothError /* result */)
-
// Informs the renderer that the user has successfully subscribed to
// notifications from the device.
IPC_MESSAGE_CONTROL2(BluetoothMsg_StartNotificationsSuccess,
@@ -285,14 +272,6 @@ IPC_MESSAGE_CONTROL4(BluetoothHostMsg_ReadValue,
int /* frame_routing_id */,
std::string /* characteristic_instance_id */)
-// Writes a value to a bluetooth device's characteristic.
-IPC_MESSAGE_CONTROL5(BluetoothHostMsg_WriteValue,
- int /* thread_id */,
- int /* request_id */,
- int /* frame_routing_id */,
- std::string /* characteristic_instance_id */,
- std::vector<uint8_t> /* value */)
-
// Subscribes to notifications from a device's characteristic.
IPC_MESSAGE_CONTROL4(BluetoothHostMsg_StartNotifications,
int /* thread_id */,
« no previous file with comments | « content/child/mojo/type_converters.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698