summaryrefslogtreecommitdiffstats
path: root/chrome/service
diff options
context:
space:
mode:
authorhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-27 01:49:50 +0000
committerhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-27 01:49:50 +0000
commitd656b8af5feef13c5d8550e27261f945c563f676 (patch)
tree01df3b09e3eaf93e546d4cd41c8440b1f359d190 /chrome/service
parentd04ab078962e964ef666236a67459265a2ceef15 (diff)
downloadchromium_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 'chrome/service')
-rw-r--r--chrome/service/service_process.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/service/service_process.cc b/chrome/service/service_process.cc
index 4d757ae..33d2dfe 100644
--- a/chrome/service/service_process.cc
+++ b/chrome/service/service_process.cc
@@ -9,7 +9,7 @@
#include "net/base/network_change_notifier.h"
#if defined(ENABLE_REMOTING)
-#include "remoting/base/encoder_verbatim.h"
+#include "remoting/base/encoder_zlib.h"
#include "remoting/host/chromoting_host.h"
#include "remoting/host/chromoting_host_context.h"
#include "remoting/host/host_config.h"
@@ -85,7 +85,7 @@ remoting::ChromotingHost* ServiceProcess::CreateChromotingHost(
capturer.reset(new remoting::CapturerMac());
executor.reset(new remoting::EventExecutorMac());
#endif
- encoder.reset(new remoting::EncoderVerbatim());
+ encoder.reset(new remoting::EncoderZlib());
return new remoting::ChromotingHost(context, config, capturer.release(),
encoder.release(), executor.release());