summaryrefslogtreecommitdiff
path: root/chromium/content/browser/bluetooth/frame_connected_bluetooth_devices.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/browser/bluetooth/frame_connected_bluetooth_devices.h')
-rw-r--r--chromium/content/browser/bluetooth/frame_connected_bluetooth_devices.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/chromium/content/browser/bluetooth/frame_connected_bluetooth_devices.h b/chromium/content/browser/bluetooth/frame_connected_bluetooth_devices.h
index 2da3e3cabf7..f259b4d19de 100644
--- a/chromium/content/browser/bluetooth/frame_connected_bluetooth_devices.h
+++ b/chromium/content/browser/bluetooth/frame_connected_bluetooth_devices.h
@@ -11,6 +11,7 @@
#include "base/optional.h"
#include "content/common/content_export.h"
+#include "mojo/public/cpp/bindings/associated_remote.h"
#include "third_party/blink/public/common/bluetooth/web_bluetooth_device_id.h"
#include "third_party/blink/public/mojom/bluetooth/web_bluetooth.mojom.h"
#include "url/origin.h"
@@ -43,9 +44,10 @@ class CONTENT_EXPORT FrameConnectedBluetoothDevices final {
// If a connection doesn't exist already for |device_id|, adds a connection to
// the map and increases the WebContents count of connected devices.
- void Insert(const blink::WebBluetoothDeviceId& device_id,
- std::unique_ptr<device::BluetoothGattConnection> connection,
- blink::mojom::WebBluetoothServerClientAssociatedPtr client);
+ void Insert(
+ const blink::WebBluetoothDeviceId& device_id,
+ std::unique_ptr<device::BluetoothGattConnection> connection,
+ mojo::AssociatedRemote<blink::mojom::WebBluetoothServerClient> client);
// Deletes the BluetoothGattConnection for |device_id| and decrements the
// WebContents count of connected devices if |device_id| had a connection.