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

Unified Diff: remoting/host/desktop_session_agent_win.cc

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, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/desktop_session_agent_posix.cc ('k') | remoting/host/video_scheduler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/desktop_session_agent_win.cc
diff --git a/remoting/host/desktop_session_agent_win.cc b/remoting/host/desktop_session_agent_win.cc
index ff771e56c873e17559e33a8fbabb1296867fc962..6ef4f01af85560e5fc42f4d2f81bbefc1d8561d5 100644
--- a/remoting/host/desktop_session_agent_win.cc
+++ b/remoting/host/desktop_session_agent_win.cc
@@ -25,11 +25,13 @@ class DesktopSessionAgentWin : public DesktopSessionAgent {
public:
DesktopSessionAgentWin(
scoped_refptr<AutoThreadTaskRunner> caller_task_runner,
- scoped_refptr<AutoThreadTaskRunner> io_task_runner);
- virtual ~DesktopSessionAgentWin();
+ scoped_refptr<AutoThreadTaskRunner> io_task_runner,
+ scoped_refptr<AutoThreadTaskRunner> video_capture_task_runner);
protected:
- virtual bool DoCreateNetworkChannel(
+ virtual ~DesktopSessionAgentWin();
+
+ virtual bool CreateChannelForNetworkProcess(
IPC::PlatformFileForTransit* client_out,
scoped_ptr<IPC::ChannelProxy>* server_out) OVERRIDE;
@@ -39,14 +41,17 @@ class DesktopSessionAgentWin : public DesktopSessionAgent {
DesktopSessionAgentWin::DesktopSessionAgentWin(
scoped_refptr<AutoThreadTaskRunner> caller_task_runner,
- scoped_refptr<AutoThreadTaskRunner> io_task_runner)
- : DesktopSessionAgent(caller_task_runner, io_task_runner) {
+ scoped_refptr<AutoThreadTaskRunner> io_task_runner,
+ scoped_refptr<AutoThreadTaskRunner> video_capture_task_runner)
+ : DesktopSessionAgent(caller_task_runner,
+ io_task_runner,
+ video_capture_task_runner) {
}
DesktopSessionAgentWin::~DesktopSessionAgentWin() {
}
-bool DesktopSessionAgentWin::DoCreateNetworkChannel(
+bool DesktopSessionAgentWin::CreateChannelForNetworkProcess(
IPC::PlatformFileForTransit* client_out,
scoped_ptr<IPC::ChannelProxy>* server_out) {
// Generate a unique name for the channel.
@@ -80,11 +85,12 @@ bool DesktopSessionAgentWin::DoCreateNetworkChannel(
}
// static
-scoped_ptr<DesktopSessionAgent> DesktopSessionAgent::Create(
+scoped_refptr<DesktopSessionAgent> DesktopSessionAgent::Create(
scoped_refptr<AutoThreadTaskRunner> caller_task_runner,
- scoped_refptr<AutoThreadTaskRunner> io_task_runner) {
- return scoped_ptr<DesktopSessionAgent>(new DesktopSessionAgentWin(
- caller_task_runner, io_task_runner));
+ scoped_refptr<AutoThreadTaskRunner> io_task_runner,
+ scoped_refptr<AutoThreadTaskRunner> video_capture_task_runner) {
+ return scoped_refptr<DesktopSessionAgent>(new DesktopSessionAgentWin(
+ caller_task_runner, io_task_runner, video_capture_task_runner));
}
} // namespace remoting
« no previous file with comments | « remoting/host/desktop_session_agent_posix.cc ('k') | remoting/host/video_scheduler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698