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

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

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.h
diff --git a/talk/session/media/channelmanager.h b/talk/session/media/channelmanager.h
index 3bfef84de2915328c514e3e7d149753557fcbf90..fd1374a85a64cc69d4e65b812d85b66d40bf4eb5 100644
--- a/talk/session/media/channelmanager.h
+++ b/talk/session/media/channelmanager.h
@@ -177,10 +177,10 @@ class ChannelManager : public rtc::MessageHandler,
std::vector<cricket::VideoFormat> GetSupportedFormats(
VideoCapturer* capturer) const;
// The channel manager handles the Tx and Rx side for Voice processing.
- bool RegisterVoiceProcessor(uint32 ssrc,
+ bool RegisterVoiceProcessor(uint32_t ssrc,
VoiceProcessor* processor,
MediaProcessorDirection direction);
- bool UnregisterVoiceProcessor(uint32 ssrc,
+ bool UnregisterVoiceProcessor(uint32_t ssrc,
VoiceProcessor* processor,
MediaProcessorDirection direction);
// The following are done in the new "CaptureManager" style that

Powered by Google App Engine
This is Rietveld 408576698