| 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 // This file implements the Windows service controlling Me2Me host processes | 5 // This file implements the Windows service controlling Me2Me host processes | 
| 6 // running within user sessions. | 6 // running within user sessions. | 
| 7 | 7 | 
| 8 #include "remoting/host/win/wts_session_process_delegate.h" | 8 #include "remoting/host/win/wts_session_process_delegate.h" | 
| 9 | 9 | 
| 10 #include <utility> | 10 #include <utility> | 
| 11 | 11 | 
| 12 #include "base/bind.h" | 12 #include "base/bind.h" | 
| 13 #include "base/command_line.h" | 13 #include "base/command_line.h" | 
| 14 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" | 
| 15 #include "base/logging.h" | 15 #include "base/logging.h" | 
| 16 #include "base/macros.h" | 16 #include "base/macros.h" | 
| 17 #include "base/message_loop/message_loop.h" | 17 #include "base/message_loop/message_loop.h" | 
| 18 #include "base/single_thread_task_runner.h" | 18 #include "base/single_thread_task_runner.h" | 
| 19 #include "base/strings/utf_string_conversions.h" | 19 #include "base/strings/utf_string_conversions.h" | 
| 20 #include "base/thread_task_runner_handle.h" | 20 #include "base/threading/thread_task_runner_handle.h" | 
| 21 #include "base/win/scoped_handle.h" | 21 #include "base/win/scoped_handle.h" | 
| 22 #include "base/win/windows_version.h" | 22 #include "base/win/windows_version.h" | 
| 23 #include "ipc/attachment_broker.h" | 23 #include "ipc/attachment_broker.h" | 
| 24 #include "ipc/ipc_channel.h" | 24 #include "ipc/ipc_channel.h" | 
| 25 #include "ipc/ipc_channel_proxy.h" | 25 #include "ipc/ipc_channel_proxy.h" | 
| 26 #include "ipc/ipc_listener.h" | 26 #include "ipc/ipc_listener.h" | 
| 27 #include "ipc/ipc_message.h" | 27 #include "ipc/ipc_message.h" | 
| 28 #include "remoting/host/host_main.h" | 28 #include "remoting/host/host_main.h" | 
| 29 #include "remoting/host/ipc_constants.h" | 29 #include "remoting/host/ipc_constants.h" | 
| 30 #include "remoting/host/ipc_util.h" | 30 #include "remoting/host/ipc_util.h" | 
| (...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 553 | 553 | 
| 554 void WtsSessionProcessDelegate::CloseChannel() { | 554 void WtsSessionProcessDelegate::CloseChannel() { | 
| 555   core_->CloseChannel(); | 555   core_->CloseChannel(); | 
| 556 } | 556 } | 
| 557 | 557 | 
| 558 void WtsSessionProcessDelegate::KillProcess() { | 558 void WtsSessionProcessDelegate::KillProcess() { | 
| 559   core_->KillProcess(); | 559   core_->KillProcess(); | 
| 560 } | 560 } | 
| 561 | 561 | 
| 562 }  // namespace remoting | 562 }  // namespace remoting | 
| OLD | NEW | 
|---|