Fix NullVideoEngine's CreateChannel implementation.

BUG=
R=pthatcher@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/44149004

Cr-Commit-Position: refs/heads/master@{#8980}
This commit is contained in:
Noah Richards
2015-04-10 14:32:39 -07:00
parent b32a5c48d3
commit 99c2fe5d2b

View File

@@ -336,6 +336,7 @@ class NullVideoEngine {
int GetCapabilities() { return 0; } int GetCapabilities() { return 0; }
// If you need this to return an actual channel, use FakeMediaEngine instead. // If you need this to return an actual channel, use FakeMediaEngine instead.
VideoMediaChannel* CreateChannel( VideoMediaChannel* CreateChannel(
const VideoOptions& options,
VoiceMediaChannel* voice_media_channel) { VoiceMediaChannel* voice_media_channel) {
return NULL; return NULL;
} }