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

Unified Diff: remoting/protocol/video_reader.cc

Issue 7508044: Remove video_channel() from Session interface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 9 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
Index: remoting/protocol/video_reader.cc
diff --git a/remoting/protocol/video_reader.cc b/remoting/protocol/video_reader.cc
index b3bc5ed74b2e2d351008e4619eb6df4541f1e797..08417e2341861d1086fae5ca5a057d54265a275f 100644
--- a/remoting/protocol/video_reader.cc
+++ b/remoting/protocol/video_reader.cc
@@ -16,6 +16,7 @@ VideoReader::~VideoReader() { }
// static
VideoReader* VideoReader::Create(const SessionConfig* config) {
const ChannelConfig& video_config = config->video_config();
+ LOG(ERROR) << "Creating " << video_config.codec;
Wez 2011/08/04 23:49:52 nit: Errant logging.
Sergey Ulanov 2011/08/09 19:41:10 Done.
if (video_config.transport == ChannelConfig::TRANSPORT_SRTP) {
return new RtpVideoReader();
} else if (video_config.transport == ChannelConfig::TRANSPORT_STREAM) {

Powered by Google App Engine
This is Rietveld 408576698