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

Unified Diff: talk/session/media/channelmanager.cc

Issue 1362503003: Use suffixed {uint,int}{8,16,32,64}_t types. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: google::int32 Created 5 years, 3 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: 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>(

Powered by Google App Engine
This is Rietveld 408576698