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

Unified Diff: webrtc/media/base/hybriddataengine.h

Issue 2539813003: Set the preferred DSCP value for Rtp data channel to be DSCP_AF41. (Closed)
Patch Set: Remove the default parameter. Created 4 years 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 | « webrtc/media/base/fakemediaengine.h ('k') | webrtc/media/base/mediachannel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/media/base/hybriddataengine.h
diff --git a/webrtc/media/base/hybriddataengine.h b/webrtc/media/base/hybriddataengine.h
index 508210b8c5bb060afe8a7d2f2a885b11d1b6454a..341f054868053a9982d72523bcdd185a94b40fd6 100644
--- a/webrtc/media/base/hybriddataengine.h
+++ b/webrtc/media/base/hybriddataengine.h
@@ -35,13 +35,14 @@ class HybridDataEngine : public DataEngineInterface {
second_->data_codecs().end());
}
- virtual DataMediaChannel* CreateChannel(DataChannelType data_channel_type) {
+ virtual DataMediaChannel* CreateChannel(DataChannelType data_channel_type,
+ const MediaConfig& config) {
DataMediaChannel* channel = NULL;
if (first_) {
- channel = first_->CreateChannel(data_channel_type);
+ channel = first_->CreateChannel(data_channel_type, config);
}
if (!channel && second_) {
- channel = second_->CreateChannel(data_channel_type);
+ channel = second_->CreateChannel(data_channel_type, config);
}
return channel;
}
« no previous file with comments | « webrtc/media/base/fakemediaengine.h ('k') | webrtc/media/base/mediachannel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698