Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4013)

Unified Diff: chrome/service/service_process.cc

Issue 3034035: [chromoting] Use zlib as the default encoder and decoder (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | remoting/base/decoder_zlib.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/service/service_process.cc
diff --git a/chrome/service/service_process.cc b/chrome/service/service_process.cc
index 4d757ae9e2944ccf8dd43e352c7c4cbff95b1566..33d2dfe9abe66efd6ec228e274da90b4857e4999 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());
« no previous file with comments | « no previous file | remoting/base/decoder_zlib.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698