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

Unified Diff: talk/session/media/audiomonitor.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: 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/session/media/audiomonitor.h ('k') | talk/session/media/bundlefilter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/session/media/audiomonitor.cc
diff --git a/talk/session/media/audiomonitor.cc b/talk/session/media/audiomonitor.cc
index aa4a87dd3106ea079c24e84df2976fc083b9f237..bdb71cb2f6a139c54c1da43d8c8be8ce8453540d 100644
--- a/talk/session/media/audiomonitor.cc
+++ b/talk/session/media/audiomonitor.cc
@@ -31,10 +31,10 @@
namespace cricket {
-const uint32 MSG_MONITOR_POLL = 1;
-const uint32 MSG_MONITOR_START = 2;
-const uint32 MSG_MONITOR_STOP = 3;
-const uint32 MSG_MONITOR_SIGNAL = 4;
+const uint32_t MSG_MONITOR_POLL = 1;
+const uint32_t MSG_MONITOR_START = 2;
+const uint32_t MSG_MONITOR_STOP = 3;
+const uint32_t MSG_MONITOR_SIGNAL = 4;
AudioMonitor::AudioMonitor(VoiceChannel *voice_channel,
rtc::Thread *monitor_thread) {
« no previous file with comments | « talk/session/media/audiomonitor.h ('k') | talk/session/media/bundlefilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698