Commit 39467dca authored by garykac@chromium.org's avatar garykac@chromium.org

Change Chromoting X11 client default decoder to Zlib.

BUG=none
TEST=remoting unittests

Review URL: http://codereview.chromium.org/3176023

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56941 0039d316-1c4b-4281-b951-d872f2087c98
parent 48f62a44
......@@ -11,6 +11,7 @@
#include "base/logging.h"
#include "remoting/base/decoder_verbatim.h"
#include "remoting/base/decoder_zlib.h"
namespace remoting {
......@@ -174,7 +175,7 @@ void X11View::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());
}
// Tell the decoder to do start decoding.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment