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

Side by Side Diff: remoting/host/desktop_process.h

Issue 11413022: DesktopSessionAgent now hosts the video capturer and provides necessary plumbing to drive it via an… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixing clang compilation. Created 8 years 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/chromoting_messages.h ('k') | remoting/host/desktop_process.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 #ifndef REMOTING_HOST_DESKTOP_PROCESS_H_ 5 #ifndef REMOTING_HOST_DESKTOP_PROCESS_H_
6 #define REMOTING_HOST_DESKTOP_PROCESS_H_ 6 #define REMOTING_HOST_DESKTOP_PROCESS_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 50
51 // Name of the IPC channel connecting the desktop process with the daemon 51 // Name of the IPC channel connecting the desktop process with the daemon
52 // process. 52 // process.
53 std::string daemon_channel_name_; 53 std::string daemon_channel_name_;
54 54
55 // IPC channel connecting the desktop process with the daemon process. 55 // IPC channel connecting the desktop process with the daemon process.
56 scoped_ptr<IPC::ChannelProxy> daemon_channel_; 56 scoped_ptr<IPC::ChannelProxy> daemon_channel_;
57 57
58 // Provides screen/audio capturing and input injection services for 58 // Provides screen/audio capturing and input injection services for
59 // the network process. 59 // the network process.
60 scoped_ptr<DesktopSessionAgent> desktop_agent_; 60 scoped_refptr<DesktopSessionAgent> desktop_agent_;
61 61
62 DISALLOW_COPY_AND_ASSIGN(DesktopProcess); 62 DISALLOW_COPY_AND_ASSIGN(DesktopProcess);
63 }; 63 };
64 64
65 } // namespace remoting 65 } // namespace remoting
66 66
67 #endif // REMOTING_HOST_DESKTOP_PROCESS_H_ 67 #endif // REMOTING_HOST_DESKTOP_PROCESS_H_
OLDNEW
« no previous file with comments | « remoting/host/chromoting_messages.h ('k') | remoting/host/desktop_process.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698