Index: content/child/bluetooth/web_bluetooth_impl.h |
diff --git a/content/child/bluetooth/web_bluetooth_impl.h b/content/child/bluetooth/web_bluetooth_impl.h |
index 5eede0ef3d6a00291d5e140f2cd16c53fc9b80b0..f287c0a2ce42b920164d8c01bbbfc408699b8659 100644 |
--- a/content/child/bluetooth/web_bluetooth_impl.h |
+++ b/content/child/bluetooth/web_bluetooth_impl.h |
@@ -23,6 +23,7 @@ class CONTENT_EXPORT WebBluetoothImpl |
: NON_EXPORTED_BASE(public blink::WebBluetooth) { |
public: |
explicit WebBluetoothImpl(ThreadSafeSender* thread_safe_sender); |
+ WebBluetoothImpl(ThreadSafeSender* thread_safe_sender, int routing_id); |
~WebBluetoothImpl(); |
// blink::WebBluetooth interface: |
@@ -48,7 +49,8 @@ class CONTENT_EXPORT WebBluetoothImpl |
private: |
BluetoothDispatcher* GetDispatcher(); |
- scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
+ const scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
+ const int routing_id_; |
DISALLOW_COPY_AND_ASSIGN(WebBluetoothImpl); |
}; |