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

Unified Diff: remoting/protocol/session_config.cc

Issue 4779001: Added CompoundBuffer that will be used to store data in the encoding/decoding (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merged CompoundBuffer with MultipleArrayInputStream Created 10 years, 1 month 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
Index: remoting/protocol/session_config.cc
diff --git a/remoting/protocol/session_config.cc b/remoting/protocol/session_config.cc
index 608510be5daebcd5e8de6d1f1bfd69152595a32b..b5febf2908cbea791b8b874e703928d3f49588e1 100644
--- a/remoting/protocol/session_config.cc
+++ b/remoting/protocol/session_config.cc
@@ -232,12 +232,12 @@ CandidateSessionConfig* CandidateSessionConfig::CreateDefault() {
kDefaultStreamVersion,
ChannelConfig::CODEC_UNDEFINED));
- result->AddVideoConfig(ChannelConfig(ChannelConfig::TRANSPORT_STREAM,
- kDefaultStreamVersion,
- ChannelConfig::CODEC_ZIP));
result->AddVideoConfig(ChannelConfig(ChannelConfig::TRANSPORT_SRTP,
kDefaultStreamVersion,
ChannelConfig::CODEC_VP8));
+ result->AddVideoConfig(ChannelConfig(ChannelConfig::TRANSPORT_STREAM,
+ kDefaultStreamVersion,
+ ChannelConfig::CODEC_ZIP));
return result;
}

Powered by Google App Engine
This is Rietveld 408576698