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

Side by Side Diff: remoting/host/desktop_session_proxy.cc

Issue 307463004: Remove PlatformFile from remoting (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix compilation Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « remoting/host/desktop_session_agent.cc ('k') | remoting/host/ipc_desktop_environment.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « remoting/host/desktop_session_agent.cc ('k') | remoting/host/ipc_desktop_environment.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698