diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-27 01:49:50 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-27 01:49:50 +0000 |
commit | d656b8af5feef13c5d8550e27261f945c563f676 (patch) | |
tree | 01df3b09e3eaf93e546d4cd41c8440b1f359d190 /remoting/host | |
parent | d04ab078962e964ef666236a67459265a2ceef15 (diff) | |
download | chromium_src-d656b8af5feef13c5d8550e27261f945c563f676.zip chromium_src-d656b8af5feef13c5d8550e27261f945c563f676.tar.gz chromium_src-d656b8af5feef13c5d8550e27261f945c563f676.tar.bz2 |
[chromoting] Use zlib as the default encoder and decoder
Use EncoderZlib / DecoderZlib as default encoder and decoder.
BUG=50246
Review URL: http://codereview.chromium.org/3034035
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53742 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host')
-rw-r--r-- | remoting/host/simple_host_process.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/host/simple_host_process.cc b/remoting/host/simple_host_process.cc index 1c89fa3..7f0b6bd 100644 --- a/remoting/host/simple_host_process.cc +++ b/remoting/host/simple_host_process.cc @@ -26,7 +26,7 @@ #include "base/nss_util.h" #include "base/scoped_nsautorelease_pool.h" #include "base/thread.h" -#include "remoting/base/encoder_verbatim.h" +#include "remoting/base/encoder_zlib.h" #include "remoting/host/capturer_fake.h" #include "remoting/host/chromoting_host.h" #include "remoting/host/chromoting_host_context.h" @@ -84,7 +84,7 @@ int main(int argc, char** argv) { capturer.reset(new remoting::CapturerMac()); executor.reset(new remoting::EventExecutorMac()); #endif - encoder.reset(new remoting::EncoderVerbatim()); + encoder.reset(new remoting::EncoderZlib()); // Check the argument to see if we should use a fake capturer and encoder. bool fake = cmd_line->HasSwitch(kFakeSwitchName); |