| Index: content/renderer/bluetooth/web_bluetooth_impl.h
|
| diff --git a/content/renderer/bluetooth/web_bluetooth_impl.h b/content/renderer/bluetooth/web_bluetooth_impl.h
|
| index 3075d1b5c3ed6918653abd8e7de1a5017412a4d8..ffb3c3f85fddc7c15fd3fbbba11a6e56c9f32688 100644
|
| --- a/content/renderer/bluetooth/web_bluetooth_impl.h
|
| +++ b/content/renderer/bluetooth/web_bluetooth_impl.h
|
| @@ -23,14 +23,16 @@ namespace content {
|
|
|
| class BluetoothDispatcher;
|
| class ThreadSafeSender;
|
| +class ServiceRegistry;
|
|
|
| // Implementation of blink::WebBluetooth. Passes calls through to the thread
|
| // specific BluetoothDispatcher.
|
| class CONTENT_EXPORT WebBluetoothImpl
|
| : NON_EXPORTED_BASE(public blink::WebBluetooth) {
|
| public:
|
| - explicit WebBluetoothImpl(ThreadSafeSender* thread_safe_sender);
|
| - WebBluetoothImpl(ThreadSafeSender* thread_safe_sender, int frame_routing_id);
|
| + WebBluetoothImpl(ThreadSafeSender* thread_safe_sender,
|
| + ServiceRegistry* service_registry,
|
| + int frame_routing_id);
|
| ~WebBluetoothImpl() override;
|
|
|
| // blink::WebBluetooth interface:
|
| @@ -79,6 +81,7 @@ class CONTENT_EXPORT WebBluetoothImpl
|
|
|
| const scoped_refptr<ThreadSafeSender> thread_safe_sender_;
|
| const int frame_routing_id_;
|
| + ServiceRegistry* service_registry_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(WebBluetoothImpl);
|
| };
|
|
|