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

Side by Side Diff: remoting/host/security_key/remote_security_key_ipc_client.cc

Issue 1969053002: Fix include path for moved thread_task_runner_handle.h header in remoting/ (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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "remoting/host/security_key/remote_security_key_ipc_client.h" 5 #include "remoting/host/security_key/remote_security_key_ipc_client.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/callback_helpers.h" 11 #include "base/callback_helpers.h"
12 #include "base/thread_task_runner_handle.h" 12 #include "base/threading/thread_task_runner_handle.h"
13 #include "ipc/ipc_channel.h" 13 #include "ipc/ipc_channel.h"
14 #include "ipc/ipc_listener.h" 14 #include "ipc/ipc_listener.h"
15 #include "ipc/ipc_message.h" 15 #include "ipc/ipc_message.h"
16 #include "ipc/ipc_message_macros.h" 16 #include "ipc/ipc_message_macros.h"
17 #include "remoting/host/chromoting_messages.h" 17 #include "remoting/host/chromoting_messages.h"
18 #include "remoting/host/ipc_constants.h" 18 #include "remoting/host/ipc_constants.h"
19 #include "remoting/host/security_key/remote_security_key_ipc_constants.h" 19 #include "remoting/host/security_key/remote_security_key_ipc_constants.h"
20 20
21 namespace remoting { 21 namespace remoting {
22 22
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 ipc_channel_.reset(); 213 ipc_channel_.reset();
214 base::PlatformThread::Sleep(kPerIterationWaitTime); 214 base::PlatformThread::Sleep(kPerIterationWaitTime);
215 } 215 }
216 216
217 if (!connection_error_callback_.is_null()) { 217 if (!connection_error_callback_.is_null()) {
218 base::ResetAndReturn(&connection_error_callback_).Run(); 218 base::ResetAndReturn(&connection_error_callback_).Run();
219 } 219 }
220 } 220 }
221 221
222 } // namespace remoting 222 } // namespace remoting
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698