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 #include "remoting/host/desktop_session_proxy.h" | 5 #include "remoting/host/desktop_session_proxy.h" |
6 | 6 |
7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/platform_file.h" | |
10 #include "base/process/process_handle.h" | 9 #include "base/process/process_handle.h" |
11 #include "base/memory/shared_memory.h" | 10 #include "base/memory/shared_memory.h" |
12 #include "base/single_thread_task_runner.h" | 11 #include "base/single_thread_task_runner.h" |
13 #include "ipc/ipc_channel_proxy.h" | 12 #include "ipc/ipc_channel_proxy.h" |
14 #include "ipc/ipc_message_macros.h" | 13 #include "ipc/ipc_message_macros.h" |
15 #include "remoting/base/capabilities.h" | 14 #include "remoting/base/capabilities.h" |
16 #include "remoting/host/chromoting_messages.h" | 15 #include "remoting/host/chromoting_messages.h" |
17 #include "remoting/host/client_session.h" | 16 #include "remoting/host/client_session.h" |
18 #include "remoting/host/client_session_control.h" | 17 #include "remoting/host/client_session_control.h" |
19 #include "remoting/host/desktop_session_connector.h" | 18 #include "remoting/host/desktop_session_connector.h" |
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
556 } | 555 } |
557 | 556 |
558 // static | 557 // static |
559 void DesktopSessionProxyTraits::Destruct( | 558 void DesktopSessionProxyTraits::Destruct( |
560 const DesktopSessionProxy* desktop_session_proxy) { | 559 const DesktopSessionProxy* desktop_session_proxy) { |
561 desktop_session_proxy->caller_task_runner_->DeleteSoon(FROM_HERE, | 560 desktop_session_proxy->caller_task_runner_->DeleteSoon(FROM_HERE, |
562 desktop_session_proxy); | 561 desktop_session_proxy); |
563 } | 562 } |
564 | 563 |
565 } // namespace remoting | 564 } // namespace remoting |
OLD | NEW |