Index: talk/session/media/channelmanager.cc |
diff --git a/talk/session/media/channelmanager.cc b/talk/session/media/channelmanager.cc |
index c109d60388bb5fb37e4aaa856bbe6b048b292599..80907b8ae58a7377f884ef9bdd6d192c2fbf79ea 100644 |
--- a/talk/session/media/channelmanager.cc |
+++ b/talk/session/media/channelmanager.cc |
@@ -755,17 +755,16 @@ void ChannelManager::GetSupportedFormats_w( |
*out_formats = *formats; |
} |
-bool ChannelManager::RegisterVoiceProcessor( |
- uint32 ssrc, |
- VoiceProcessor* processor, |
- MediaProcessorDirection direction) { |
+bool ChannelManager::RegisterVoiceProcessor(uint32_t ssrc, |
+ VoiceProcessor* processor, |
+ MediaProcessorDirection direction) { |
return initialized_ && worker_thread_->Invoke<bool>( |
Bind(&MediaEngineInterface::RegisterVoiceProcessor, media_engine_.get(), |
ssrc, processor, direction)); |
} |
bool ChannelManager::UnregisterVoiceProcessor( |
- uint32 ssrc, |
+ uint32_t ssrc, |
VoiceProcessor* processor, |
MediaProcessorDirection direction) { |
return initialized_ && worker_thread_->Invoke<bool>( |