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

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

Issue 1861013005: bluetooth: Move GetCharacteristic(s) over to Mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth-separate-tests-read-value
Patch Set: Address palmer's comments 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 | « content/browser/bluetooth/web_bluetooth_service_impl.cc ('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 edd6d3624f348a635e15f02c3838a78d1cd26c5a..88cbb5cb9c540ac99f3a813cc2440ebfa63326d5 100644
--- a/content/common/bluetooth/bluetooth_messages.h
+++ b/content/common/bluetooth/bluetooth_messages.h
@@ -151,36 +151,6 @@ IPC_MESSAGE_CONTROL3(BluetoothMsg_GetPrimaryServiceError,
int /* request_id */,
blink::WebBluetoothError /* result */)
-// Informs the renderer that characteristic request |request_id| succeeded.
-IPC_MESSAGE_CONTROL4(BluetoothMsg_GetCharacteristicSuccess,
- int /* thread_id */,
- int /* request_id */,
- std::string /* characteristic_instance_id */,
- uint32_t /* characteristic_properties */)
-
-// Informs the renderer that the characteristic request |request_id| failed.
-IPC_MESSAGE_CONTROL3(BluetoothMsg_GetCharacteristicError,
- int /* thread_id */,
- int /* request_id */,
- blink::WebBluetoothError /* result */)
-
-// Informs the renderer that the multiple-characteristic request |request_id|
-// succeeded.
-IPC_MESSAGE_CONTROL5(
- BluetoothMsg_GetCharacteristicsSuccess,
- int /* thread_id */,
- int /* request_id */,
- std::vector<std::string> /* characteristics_instance_ids */,
- std::vector<std::string> /* characteristics_uuids */,
- std::vector<uint32_t> /* characteristics_properties */)
-
-// Informs the renderer that the multiple-characteristic request |request_id|
-// failed.
-IPC_MESSAGE_CONTROL3(BluetoothMsg_GetCharacteristicsError,
- int /* thread_id */,
- int /* request_id */,
- blink::WebBluetoothError /* result */)
-
// Messages sent from the renderer to the browser.
// Requests a bluetooth device from the browser.
@@ -211,19 +181,3 @@ IPC_MESSAGE_CONTROL5(BluetoothHostMsg_GetPrimaryService,
int /* frame_routing_id */,
std::string /* device_id */,
std::string /* service_uuid */)
-
-// Gets a GATT Characteristic within a GATT Service.
-IPC_MESSAGE_CONTROL5(BluetoothHostMsg_GetCharacteristic,
- int /* thread_id */,
- int /* request_id */,
- int /* frame_routing_id */,
- std::string /* service_instance_id */,
- std::string /* characteristic_uuid */)
-
-// Gets GATT Characteristics within a GATT Service.
-IPC_MESSAGE_CONTROL5(BluetoothHostMsg_GetCharacteristics,
- int /* thread_id */,
- int /* request_id */,
- int /* frame_routing_id */,
- std::string /* service_instance_id */,
- std::string /* characteristics_uuid */)
« no previous file with comments | « content/browser/bluetooth/web_bluetooth_service_impl.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698