diff options
author | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-03 04:17:09 +0000 |
---|---|---|
committer | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-03 04:17:09 +0000 |
commit | 14fd1a60acdd439f80bdfc0aeb86761ba649db79 (patch) | |
tree | 5bfbcefbd8776ca6a4d810a75601d8bf62d91a7c /chrome/service/service_process.cc | |
parent | 07f1ceeabc0cf63ed8d7ae7aa8d1ff04dda02584 (diff) | |
download | chromium_src-14fd1a60acdd439f80bdfc0aeb86761ba649db79.zip chromium_src-14fd1a60acdd439f80bdfc0aeb86761ba649db79.tar.gz chromium_src-14fd1a60acdd439f80bdfc0aeb86761ba649db79.tar.bz2 |
Add VideoReader and VideoWriter interfaces.
Implemented VideoReader and VideoWriter for RTP and Protobuf.
BUG=53986
TEST=None
Review URL: http://codereview.chromium.org/4229003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64878 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/service/service_process.cc')
-rw-r--r-- | chrome/service/service_process.cc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/chrome/service/service_process.cc b/chrome/service/service_process.cc index 1ec4a83..2a6f069 100644 --- a/chrome/service/service_process.cc +++ b/chrome/service/service_process.cc @@ -25,7 +25,6 @@ #if defined(ENABLE_REMOTING) #include "remoting/base/constants.h" -#include "remoting/base/encoder_zlib.h" #include "remoting/host/chromoting_host.h" #include "remoting/host/chromoting_host_context.h" #include "remoting/host/json_host_config.h" @@ -282,10 +281,9 @@ bool ServiceProcess::StartChromotingHost() { chromoting_context_.reset(new remoting::ChromotingHostContext()); chromoting_context_->Start(); - // Create capturer, encoder and executor. The ownership will be transfered + // Create capturer and executor. The ownership will be transfered // to the chromoting host. scoped_ptr<remoting::Capturer> capturer; - scoped_ptr<remoting::Encoder> encoder; scoped_ptr<remoting::EventExecutor> executor; #if defined(OS_WIN) @@ -298,13 +296,11 @@ bool ServiceProcess::StartChromotingHost() { capturer.reset(new remoting::CapturerMac()); executor.reset(new remoting::EventExecutorMac(capturer.get())); #endif - encoder.reset(new remoting::EncoderZlib()); // Create a chromoting host object. chromoting_host_ = new remoting::ChromotingHost(chromoting_context_.get(), chromoting_config_, capturer.release(), - encoder.release(), executor.release()); // Then start the chromoting host. |