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

Unified Diff: talk/media/webrtc/fakewebrtcvoiceengine.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/fakewebrtcvideoengine.h ('k') | talk/media/webrtc/simulcast.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/media/webrtc/fakewebrtcvoiceengine.h
diff --git a/talk/media/webrtc/fakewebrtcvoiceengine.h b/talk/media/webrtc/fakewebrtcvoiceengine.h
index abe6e6db83d10f9b90a99ccaf7eec0f125a1284e..672c5626f9be30886d8f2ac30f17ae0706e8a1ec 100644
--- a/talk/media/webrtc/fakewebrtcvoiceengine.h
+++ b/talk/media/webrtc/fakewebrtcvoiceengine.h
@@ -246,7 +246,7 @@ class FakeWebRtcVoiceEngine
int dtmf_type;
int red_type;
int nack_max_packets;
- uint32 send_ssrc;
+ uint32_t send_ssrc;
int send_audio_level_ext_;
int receive_audio_level_ext_;
int send_absolute_sender_time_ext_;
@@ -299,7 +299,7 @@ class FakeWebRtcVoiceEngine
bool IsInited() const { return inited_; }
int GetLastChannel() const { return last_channel_; }
- int GetChannelFromLocalSsrc(uint32 local_ssrc) const {
+ int GetChannelFromLocalSsrc(uint32_t local_ssrc) const {
for (std::map<int, Channel*>::const_iterator iter = channels_.begin();
iter != channels_.end(); ++iter) {
if (local_ssrc == iter->second->send_ssrc)
@@ -857,7 +857,7 @@ class FakeWebRtcVoiceEngine
unsigned int& discardedPackets));
WEBRTC_FUNC(GetRTCPStatistics, (int channel, webrtc::CallStatistics& stats)) {
WEBRTC_CHECK_CHANNEL(channel);
- stats.fractionLost = static_cast<int16>(kIntStatValue);
+ stats.fractionLost = static_cast<int16_t>(kIntStatValue);
stats.cumulativeLost = kIntStatValue;
stats.extendedMax = kIntStatValue;
stats.jitterSamples = kIntStatValue;
« no previous file with comments | « talk/media/webrtc/fakewebrtcvideoengine.h ('k') | talk/media/webrtc/simulcast.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698