| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "device/bluetooth/bluetooth_adapter_win.h" | 5 #include "device/bluetooth/bluetooth_adapter_win.h" |
| 6 | 6 |
| 7 #include <hash_set> | 7 #include <hash_set> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "base/sequenced_task_runner.h" | 12 #include "base/sequenced_task_runner.h" |
| 13 #include "base/single_thread_task_runner.h" | 13 #include "base/single_thread_task_runner.h" |
| 14 #include "base/stl_util.h" | 14 #include "base/stl_util.h" |
| 15 #include "base/thread_task_runner_handle.h" | 15 #include "base/thread_task_runner_handle.h" |
| 16 #include "device/bluetooth/bluetooth_device_win.h" | 16 #include "device/bluetooth/bluetooth_device_win.h" |
| 17 #include "device/bluetooth/bluetooth_socket_thread_win.h" | 17 #include "device/bluetooth/bluetooth_socket_thread.h" |
| 18 #include "device/bluetooth/bluetooth_task_manager_win.h" | 18 #include "device/bluetooth/bluetooth_task_manager_win.h" |
| 19 | 19 |
| 20 namespace device { | 20 namespace device { |
| 21 | 21 |
| 22 // static | 22 // static |
| 23 base::WeakPtr<BluetoothAdapter> BluetoothAdapter::CreateAdapter( | 23 base::WeakPtr<BluetoothAdapter> BluetoothAdapter::CreateAdapter( |
| 24 const InitCallback& init_callback) { | 24 const InitCallback& init_callback) { |
| 25 return BluetoothAdapterWin::CreateAdapter(init_callback); | 25 return BluetoothAdapterWin::CreateAdapter(init_callback); |
| 26 } | 26 } |
| 27 | 27 |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 if (discovery_status_ == NOT_DISCOVERING) { | 242 if (discovery_status_ == NOT_DISCOVERING) { |
| 243 error_callback.Run(); | 243 error_callback.Run(); |
| 244 return; | 244 return; |
| 245 } | 245 } |
| 246 on_stop_discovery_callbacks_.push_back(callback); | 246 on_stop_discovery_callbacks_.push_back(callback); |
| 247 MaybePostStopDiscoveryTask(); | 247 MaybePostStopDiscoveryTask(); |
| 248 } | 248 } |
| 249 | 249 |
| 250 void BluetoothAdapterWin::Init() { | 250 void BluetoothAdapterWin::Init() { |
| 251 ui_task_runner_ = base::ThreadTaskRunnerHandle::Get(); | 251 ui_task_runner_ = base::ThreadTaskRunnerHandle::Get(); |
| 252 socket_thread_ = BluetoothSocketThreadWin::Get(); | 252 socket_thread_ = BluetoothSocketThread::Get(); |
| 253 task_manager_ = | 253 task_manager_ = |
| 254 new BluetoothTaskManagerWin(ui_task_runner_); | 254 new BluetoothTaskManagerWin(ui_task_runner_); |
| 255 task_manager_->AddObserver(this); | 255 task_manager_->AddObserver(this); |
| 256 task_manager_->Initialize(); | 256 task_manager_->Initialize(); |
| 257 } | 257 } |
| 258 | 258 |
| 259 void BluetoothAdapterWin::InitForTest( | 259 void BluetoothAdapterWin::InitForTest( |
| 260 scoped_refptr<base::SequencedTaskRunner> ui_task_runner, | 260 scoped_refptr<base::SequencedTaskRunner> ui_task_runner, |
| 261 scoped_refptr<base::SequencedTaskRunner> bluetooth_task_runner) { | 261 scoped_refptr<base::SequencedTaskRunner> bluetooth_task_runner) { |
| 262 ui_task_runner_ = ui_task_runner; | 262 ui_task_runner_ = ui_task_runner; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 288 num_discovery_listeners_ -= on_stop_discovery_callbacks_.size(); | 288 num_discovery_listeners_ -= on_stop_discovery_callbacks_.size(); |
| 289 on_stop_discovery_callbacks_.clear(); | 289 on_stop_discovery_callbacks_.clear(); |
| 290 return; | 290 return; |
| 291 } | 291 } |
| 292 | 292 |
| 293 discovery_status_ = DISCOVERY_STOPPING; | 293 discovery_status_ = DISCOVERY_STOPPING; |
| 294 task_manager_->PostStopDiscoveryTask(); | 294 task_manager_->PostStopDiscoveryTask(); |
| 295 } | 295 } |
| 296 | 296 |
| 297 } // namespace device | 297 } // namespace device |
| OLD | NEW |