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

Side by Side Diff: components/proximity_auth/bluetooth_connection_finder.cc

Issue 1970833002: Fix include path for moved thread_task_runner_handle.h header in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: merge up to r393009 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 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 "components/proximity_auth/bluetooth_connection_finder.h" 5 #include "components/proximity_auth/bluetooth_connection_finder.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/location.h" 10 #include "base/location.h"
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/single_thread_task_runner.h" 12 #include "base/single_thread_task_runner.h"
13 #include "base/thread_task_runner_handle.h" 13 #include "base/threading/thread_task_runner_handle.h"
14 #include "components/proximity_auth/bluetooth_connection.h" 14 #include "components/proximity_auth/bluetooth_connection.h"
15 #include "components/proximity_auth/logging/logging.h" 15 #include "components/proximity_auth/logging/logging.h"
16 #include "device/bluetooth/bluetooth_adapter_factory.h" 16 #include "device/bluetooth/bluetooth_adapter_factory.h"
17 17
18 using device::BluetoothAdapter; 18 using device::BluetoothAdapter;
19 19
20 namespace proximity_auth { 20 namespace proximity_auth {
21 21
22 BluetoothConnectionFinder::BluetoothConnectionFinder( 22 BluetoothConnectionFinder::BluetoothConnectionFinder(
23 const RemoteDevice& remote_device, 23 const RemoteDevice& remote_device,
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 << "Connection failed! Scheduling another polling iteration."; 198 << "Connection failed! Scheduling another polling iteration.";
199 PostDelayedPoll(); 199 PostDelayedPoll();
200 } 200 }
201 } 201 }
202 202
203 void BluetoothConnectionFinder::InvokeCallbackAsync() { 203 void BluetoothConnectionFinder::InvokeCallbackAsync() {
204 connection_callback_.Run(std::move(connection_)); 204 connection_callback_.Run(std::move(connection_));
205 } 205 }
206 206
207 } // namespace proximity_auth 207 } // namespace proximity_auth
OLDNEW
« no previous file with comments | « components/proximity_auth/bluetooth_connection.cc ('k') | components/proximity_auth/messenger_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698