| Index: content/renderer/bluetooth/bluetooth_dispatcher.h
|
| diff --git a/content/renderer/bluetooth/bluetooth_dispatcher.h b/content/renderer/bluetooth/bluetooth_dispatcher.h
|
| index 561db7db131bdc9324efd987b2d6100106bf2548..e627d53ebdb8dfa02e27a8356fff4c7a86d604cf 100644
|
| --- a/content/renderer/bluetooth/bluetooth_dispatcher.h
|
| +++ b/content/renderer/bluetooth/bluetooth_dispatcher.h
|
| @@ -56,10 +56,6 @@ class BluetoothDispatcher : public WorkerThread::Observer {
|
| void requestDevice(int frame_routing_id,
|
| const blink::WebRequestDeviceOptions& options,
|
| blink::WebBluetoothRequestDeviceCallbacks* callbacks);
|
| - void connect(int frame_routing_id,
|
| - const blink::WebString& device_id,
|
| - blink::WebBluetoothRemoteGATTServerConnectCallbacks* callbacks);
|
| - void disconnect(int frame_routing_id, const blink::WebString& device_id);
|
|
|
| // WorkerThread::Observer implementation.
|
| void WillStopCurrentWorkerThread() override;
|
| @@ -72,10 +68,6 @@ class BluetoothDispatcher : public WorkerThread::Observer {
|
| void OnRequestDeviceError(int thread_id,
|
| int request_id,
|
| blink::WebBluetoothError error);
|
| - void OnGATTServerConnectSuccess(int thread_id, int request_id);
|
| - void OnGATTServerConnectError(int thread_id,
|
| - int request_id,
|
| - blink::WebBluetoothError error);
|
|
|
| scoped_refptr<ThreadSafeSender> thread_safe_sender_;
|
|
|
| @@ -83,10 +75,6 @@ class BluetoothDispatcher : public WorkerThread::Observer {
|
| // Owns callback objects.
|
| IDMap<blink::WebBluetoothRequestDeviceCallbacks, IDMapOwnPointer>
|
| pending_requests_;
|
| - // Tracks requests to connect to a device.
|
| - // Owns callback objects.
|
| - IDMap<blink::WebBluetoothRemoteGATTServerConnectCallbacks, IDMapOwnPointer>
|
| - pending_connect_requests_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(BluetoothDispatcher);
|
| };
|
|
|