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

Unified Diff: talk/session/media/audiomonitor.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: rebase + revert basictypes.h (to be landed separately just in case of a revert due to unexpected us… Created 5 years, 2 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
« no previous file with comments | « talk/media/webrtc/webrtcvoiceengine_unittest.cc ('k') | talk/session/media/audiomonitor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/session/media/audiomonitor.h
diff --git a/talk/session/media/audiomonitor.h b/talk/session/media/audiomonitor.h
index 454f0fe013de3614e5ecdde9eccb7dbb65f39e0b..3723419d6efedc673da6aff026ed23acd05087a5 100644
--- a/talk/session/media/audiomonitor.h
+++ b/talk/session/media/audiomonitor.h
@@ -40,7 +40,7 @@ class VoiceChannel;
struct AudioInfo {
int input_level;
int output_level;
- typedef std::vector<std::pair<uint32, int> > StreamList;
+ typedef std::vector<std::pair<uint32_t, int> > StreamList;
StreamList active_streams; // ssrcs contributing to output_level
};
@@ -66,7 +66,7 @@ class AudioMonitor : public rtc::MessageHandler,
VoiceChannel* voice_channel_;
rtc::Thread* monitoring_thread_;
rtc::CriticalSection crit_;
- uint32 rate_;
+ uint32_t rate_;
bool monitoring_;
};
« no previous file with comments | « talk/media/webrtc/webrtcvoiceengine_unittest.cc ('k') | talk/session/media/audiomonitor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698