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

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

Issue 1902153003: bluetooth: Move connect/disconnect to mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth-separate-connection-tests
Patch Set: Fix gypi 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 7d9112b13709b7edef297b19d54b60004eae009c..ac399daca8a3df027a3b84f21e8d36c7a6e67b3a 100644
--- a/content/common/bluetooth/bluetooth_messages.h
+++ b/content/common/bluetooth/bluetooth_messages.h
@@ -119,17 +119,6 @@ IPC_MESSAGE_CONTROL3(BluetoothMsg_RequestDeviceError,
int /* request_id */,
blink::WebBluetoothError /* result */)
-// Informs the renderer that the connection request |request_id| succeeded.
-IPC_MESSAGE_CONTROL2(BluetoothMsg_GATTServerConnectSuccess,
- int /* thread_id */,
- int /* request_id */)
-
-// Informs the renderer that the connection request |request_id| failed.
-IPC_MESSAGE_CONTROL3(BluetoothMsg_GATTServerConnectError,
- int /* thread_id */,
- int /* request_id */,
- blink::WebBluetoothError /* result */)
-
// Messages sent from the renderer to the browser.
// Requests a bluetooth device from the browser.
@@ -139,16 +128,3 @@ IPC_MESSAGE_CONTROL5(BluetoothHostMsg_RequestDevice,
int /* frame_routing_id */,
std::vector<content::BluetoothScanFilter>,
std::vector<device::BluetoothUUID> /* optional_services */)
-
-// Connects to a bluetooth device.
-IPC_MESSAGE_CONTROL4(BluetoothHostMsg_GATTServerConnect,
- int /* thread_id */,
- int /* request_id */,
- int /* frame_routing_id */,
- std::string /* device_id */)
-
-// Disconnect from a device.
-IPC_MESSAGE_CONTROL3(BluetoothHostMsg_GATTServerDisconnect,
- int /* thread_id */,
- int /* frame_routing_id */,
- std::string /* device_id */)
« 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