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

Side by Side Diff: remoting/host/setup/daemon_controller_delegate_win.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/setup/daemon_controller_delegate_win.h" 5 #include "remoting/host/setup/daemon_controller_delegate_win.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include "base/files/file_path.h" 9 #include "base/files/file_path.h"
10 #include "base/files/file_util.h" 10 #include "base/files/file_util.h"
11 #include "base/json/json_reader.h" 11 #include "base/json/json_reader.h"
12 #include "base/json/json_writer.h" 12 #include "base/json/json_writer.h"
13 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "base/macros.h" 14 #include "base/macros.h"
15 #include "base/memory/ptr_util.h" 15 #include "base/memory/ptr_util.h"
16 #include "base/thread_task_runner_handle.h" 16 #include "base/threading/thread_task_runner_handle.h"
17 #include "base/values.h" 17 #include "base/values.h"
18 #include "base/win/scoped_bstr.h" 18 #include "base/win/scoped_bstr.h"
19 #include "base/win/windows_version.h" 19 #include "base/win/windows_version.h"
20 #include "remoting/base/scoped_sc_handle_win.h" 20 #include "remoting/base/scoped_sc_handle_win.h"
21 #include "remoting/host/branding.h" 21 #include "remoting/host/branding.h"
22 #include "remoting/host/host_config.h" 22 #include "remoting/host/host_config.h"
23 #include "remoting/host/usage_stats_consent.h" 23 #include "remoting/host/usage_stats_consent.h"
24 #include "remoting/host/win/security_descriptor.h" 24 #include "remoting/host/win/security_descriptor.h"
25 25
26 namespace remoting { 26 namespace remoting {
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 // Start daemon. 469 // Start daemon.
470 InvokeCompletionCallback(done, StartDaemon()); 470 InvokeCompletionCallback(done, StartDaemon());
471 } 471 }
472 472
473 scoped_refptr<DaemonController> DaemonController::Create() { 473 scoped_refptr<DaemonController> DaemonController::Create() {
474 return new DaemonController( 474 return new DaemonController(
475 base::WrapUnique(new DaemonControllerDelegateWin())); 475 base::WrapUnique(new DaemonControllerDelegateWin()));
476 } 476 }
477 477
478 } // namespace remoting 478 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/setup/daemon_controller_delegate_linux.cc ('k') | remoting/host/setup/host_starter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698