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/client/plugin/pepper_view.cc | |
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/client/plugin/pepper_view.cc')
-rw-r--r-- | remoting/client/plugin/pepper_view.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/client/plugin/pepper_view.cc b/remoting/client/plugin/pepper_view.cc index 5b96226..c2f3538 100644 --- a/remoting/client/plugin/pepper_view.cc +++ b/remoting/client/plugin/pepper_view.cc @@ -5,7 +5,7 @@ #include "remoting/client/plugin/pepper_view.h" #include "base/message_loop.h" -#include "remoting/base/decoder_verbatim.h" +#include "remoting/base/decoder_zlib.h" #include "remoting/client/plugin/chromoting_plugin.h" #include "remoting/client/plugin/pepper_util.h" #include "third_party/ppapi/cpp/device_context_2d.h" @@ -150,7 +150,7 @@ void PepperView::HandleBeginUpdateStream(HostMessage* msg) { // TODO(hclam): Use the information from the message to create the decoder. // We lazily construct the decoder. if (!decoder_.get()) { - decoder_.reset(new DecoderVerbatim()); + decoder_.reset(new DecoderZlib()); } if (!frame_) { |