| Index: webrtc/voice_engine/channel.h | 
| diff --git a/webrtc/voice_engine/channel.h b/webrtc/voice_engine/channel.h | 
| index cd31e7702dd62c21e9d7b6ee44fdcca6c7faff11..9f789dfac332907ad4ec65c99ea8eb681c3faab0 100644 | 
| --- a/webrtc/voice_engine/channel.h | 
| +++ b/webrtc/voice_engine/channel.h | 
| @@ -175,10 +175,18 @@ class Channel | 
| uint32_t instanceId, | 
| RtcEventLog* const event_log, | 
| const Config& config); | 
| +  static int32_t CreateChannel( | 
| +      Channel*& channel, | 
| +      int32_t channelId, | 
| +      uint32_t instanceId, | 
| +      RtcEventLog* const event_log, | 
| +      const Config& config, | 
| +      const rtc::scoped_refptr<AudioDecoderFactory>& decoder_factory); | 
| Channel(int32_t channelId, | 
| uint32_t instanceId, | 
| RtcEventLog* const event_log, | 
| -          const Config& config); | 
| +          const Config& config, | 
| +          const rtc::scoped_refptr<AudioDecoderFactory>& decoder_factory); | 
| int32_t Init(); | 
| int32_t SetEngineInformation(Statistics& engineStatistics, | 
| OutputMixer& outputMixer, | 
|  |