| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/child/bluetooth/bluetooth_dispatcher.h" | 5 #include "content/child/bluetooth/bluetooth_dispatcher.h" |
| 6 | 6 |
| 7 #include "base/lazy_instance.h" | 7 #include "base/lazy_instance.h" |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "base/thread_task_runner_handle.h" | 10 #include "base/thread_task_runner_handle.h" |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 return thread_safe_sender_->Send(msg); | 94 return thread_safe_sender_->Send(msg); |
| 95 } | 95 } |
| 96 | 96 |
| 97 void BluetoothDispatcher::OnMessageReceived(const IPC::Message& msg) { | 97 void BluetoothDispatcher::OnMessageReceived(const IPC::Message& msg) { |
| 98 bool handled = true; | 98 bool handled = true; |
| 99 IPC_BEGIN_MESSAGE_MAP(BluetoothDispatcher, msg) | 99 IPC_BEGIN_MESSAGE_MAP(BluetoothDispatcher, msg) |
| 100 IPC_MESSAGE_HANDLER(BluetoothMsg_RequestDeviceSuccess, | 100 IPC_MESSAGE_HANDLER(BluetoothMsg_RequestDeviceSuccess, |
| 101 OnRequestDeviceSuccess); | 101 OnRequestDeviceSuccess); |
| 102 IPC_MESSAGE_HANDLER(BluetoothMsg_RequestDeviceError, OnRequestDeviceError); | 102 IPC_MESSAGE_HANDLER(BluetoothMsg_RequestDeviceError, OnRequestDeviceError); |
| 103 IPC_MESSAGE_HANDLER(BluetoothMsg_ConnectGATTSuccess, OnConnectGATTSuccess); | 103 IPC_MESSAGE_HANDLER(BluetoothMsg_ConnectGATTSuccess, OnConnectGATTSuccess); |
| 104 IPC_MESSAGE_HANDLER(BluetoothMsg_ConnectGATTError, OnConnectGATTError); |
| 104 IPC_MESSAGE_UNHANDLED(handled = false) | 105 IPC_MESSAGE_UNHANDLED(handled = false) |
| 105 IPC_END_MESSAGE_MAP() | 106 IPC_END_MESSAGE_MAP() |
| 106 DCHECK(handled) << "Unhandled message:" << msg.type(); | 107 DCHECK(handled) << "Unhandled message:" << msg.type(); |
| 107 } | 108 } |
| 108 | 109 |
| 109 void BluetoothDispatcher::requestDevice( | 110 void BluetoothDispatcher::requestDevice( |
| 110 blink::WebBluetoothRequestDeviceCallbacks* callbacks) { | 111 blink::WebBluetoothRequestDeviceCallbacks* callbacks) { |
| 111 int request_id = pending_requests_.Add(callbacks); | 112 int request_id = pending_requests_.Add(callbacks); |
| 112 Send(new BluetoothHostMsg_RequestDevice(CurrentWorkerId(), request_id)); | 113 Send(new BluetoothHostMsg_RequestDevice(CurrentWorkerId(), request_id)); |
| 113 } | 114 } |
| (...skipping 22 matching lines...) Expand all Loading... |
| 136 | 137 |
| 137 pending_requests_.Lookup(request_id) | 138 pending_requests_.Lookup(request_id) |
| 138 ->onSuccess(new WebBluetoothDevice( | 139 ->onSuccess(new WebBluetoothDevice( |
| 139 WebString::fromUTF8(device.instance_id), WebString(device.name), | 140 WebString::fromUTF8(device.instance_id), WebString(device.name), |
| 140 device.device_class, GetWebVendorIdSource(device.vendor_id_source), | 141 device.device_class, GetWebVendorIdSource(device.vendor_id_source), |
| 141 device.vendor_id, device.product_id, device.product_version, | 142 device.vendor_id, device.product_id, device.product_version, |
| 142 device.paired, uuids)); | 143 device.paired, uuids)); |
| 143 pending_requests_.Remove(request_id); | 144 pending_requests_.Remove(request_id); |
| 144 } | 145 } |
| 145 | 146 |
| 147 void BluetoothDispatcher::OnRequestDeviceError(int thread_id, |
| 148 int request_id, |
| 149 BluetoothError error_type) { |
| 150 DCHECK(pending_requests_.Lookup(request_id)) << request_id; |
| 151 pending_requests_.Lookup(request_id) |
| 152 ->onError(new WebBluetoothError( |
| 153 WebBluetoothErrorFromBluetoothError(error_type), "")); |
| 154 pending_requests_.Remove(request_id); |
| 155 } |
| 156 |
| 146 void BluetoothDispatcher::OnConnectGATTSuccess( | 157 void BluetoothDispatcher::OnConnectGATTSuccess( |
| 147 int thread_id, | 158 int thread_id, |
| 148 int request_id, | 159 int request_id, |
| 149 const std::string& device_instance_id) { | 160 const std::string& device_instance_id) { |
| 150 DCHECK(pending_connect_requests_.Lookup(request_id)) << request_id; | 161 DCHECK(pending_connect_requests_.Lookup(request_id)) << request_id; |
| 151 pending_connect_requests_.Lookup(request_id) | 162 pending_connect_requests_.Lookup(request_id) |
| 152 ->onSuccess(new WebBluetoothGATTRemoteServer( | 163 ->onSuccess(new WebBluetoothGATTRemoteServer( |
| 153 WebString::fromUTF8(device_instance_id), true /* connected */)); | 164 WebString::fromUTF8(device_instance_id), true /* connected */)); |
| 154 pending_connect_requests_.Remove(request_id); | 165 pending_connect_requests_.Remove(request_id); |
| 155 } | 166 } |
| 156 | 167 |
| 157 void BluetoothDispatcher::OnRequestDeviceError(int thread_id, | 168 void BluetoothDispatcher::OnConnectGATTError(int thread_id, |
| 158 int request_id, | 169 int request_id, |
| 159 BluetoothError error_type) { | 170 BluetoothError error_type) { |
| 160 DCHECK(pending_requests_.Lookup(request_id)) << request_id; | 171 DCHECK(pending_connect_requests_.Lookup(request_id)) << request_id; |
| 161 pending_requests_.Lookup(request_id) | 172 pending_connect_requests_.Lookup(request_id) |
| 162 ->onError(new WebBluetoothError( | 173 ->onError(new WebBluetoothError( |
| 163 WebBluetoothErrorFromBluetoothError(error_type), "")); | 174 WebBluetoothErrorFromBluetoothError(error_type), "")); |
| 164 pending_requests_.Remove(request_id); | 175 pending_connect_requests_.Remove(request_id); |
| 165 } | 176 } |
| 166 | 177 |
| 167 } // namespace content | 178 } // namespace content |
| OLD | NEW |