Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(548)

Side by Side Diff: device/bluetooth/bluetooth_adapter_win.cc

Issue 1969033002: Fix include path for moved thread_task_runner_handle.h header in device/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 <memory> 7 #include <memory>
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 10
11 #include "base/location.h" 11 #include "base/location.h"
12 #include "base/logging.h" 12 #include "base/logging.h"
13 #include "base/sequenced_task_runner.h" 13 #include "base/sequenced_task_runner.h"
14 #include "base/single_thread_task_runner.h" 14 #include "base/single_thread_task_runner.h"
15 #include "base/stl_util.h" 15 #include "base/stl_util.h"
16 #include "base/thread_task_runner_handle.h" 16 #include "base/threading/thread_task_runner_handle.h"
17 #include "device/bluetooth/bluetooth_device_win.h" 17 #include "device/bluetooth/bluetooth_device_win.h"
18 #include "device/bluetooth/bluetooth_discovery_session_outcome.h" 18 #include "device/bluetooth/bluetooth_discovery_session_outcome.h"
19 #include "device/bluetooth/bluetooth_socket_thread.h" 19 #include "device/bluetooth/bluetooth_socket_thread.h"
20 #include "device/bluetooth/bluetooth_socket_win.h" 20 #include "device/bluetooth/bluetooth_socket_win.h"
21 #include "device/bluetooth/bluetooth_task_manager_win.h" 21 #include "device/bluetooth/bluetooth_task_manager_win.h"
22 #include "device/bluetooth/bluetooth_uuid.h" 22 #include "device/bluetooth/bluetooth_uuid.h"
23 23
24 namespace device { 24 namespace device {
25 25
26 // static 26 // static
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 num_discovery_listeners_ -= on_stop_discovery_callbacks_.size(); 388 num_discovery_listeners_ -= on_stop_discovery_callbacks_.size();
389 on_stop_discovery_callbacks_.clear(); 389 on_stop_discovery_callbacks_.clear();
390 return; 390 return;
391 } 391 }
392 392
393 discovery_status_ = DISCOVERY_STOPPING; 393 discovery_status_ = DISCOVERY_STOPPING;
394 task_manager_->PostStopDiscoveryTask(); 394 task_manager_->PostStopDiscoveryTask();
395 } 395 }
396 396
397 } // namespace device 397 } // namespace device
OLDNEW
« no previous file with comments | « device/bluetooth/bluetooth_adapter_mac.mm ('k') | device/bluetooth/bluez/bluetooth_adapter_bluez.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698