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

Unified Diff: talk/app/webrtc/rtpreceiver.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/app/webrtc/remotevideocapturer_unittest.cc ('k') | talk/app/webrtc/rtpreceiver.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/app/webrtc/rtpreceiver.h
diff --git a/talk/app/webrtc/rtpreceiver.h b/talk/app/webrtc/rtpreceiver.h
index f5bcb2e286faeaaf1d6c5e9ff12770a5ee75ee97..a93ccbcbfe89ca63ad650879f95453714709bb6d 100644
--- a/talk/app/webrtc/rtpreceiver.h
+++ b/talk/app/webrtc/rtpreceiver.h
@@ -45,7 +45,7 @@ class AudioRtpReceiver : public ObserverInterface,
public rtc::RefCountedObject<RtpReceiverInterface> {
public:
AudioRtpReceiver(AudioTrackInterface* track,
- uint32 ssrc,
+ uint32_t ssrc,
AudioProviderInterface* provider);
virtual ~AudioRtpReceiver();
@@ -70,7 +70,7 @@ class AudioRtpReceiver : public ObserverInterface,
std::string id_;
rtc::scoped_refptr<AudioTrackInterface> track_;
- uint32 ssrc_;
+ uint32_t ssrc_;
AudioProviderInterface* provider_;
bool cached_track_enabled_;
};
@@ -78,7 +78,7 @@ class AudioRtpReceiver : public ObserverInterface,
class VideoRtpReceiver : public rtc::RefCountedObject<RtpReceiverInterface> {
public:
VideoRtpReceiver(VideoTrackInterface* track,
- uint32 ssrc,
+ uint32_t ssrc,
VideoProviderInterface* provider);
virtual ~VideoRtpReceiver();
@@ -95,7 +95,7 @@ class VideoRtpReceiver : public rtc::RefCountedObject<RtpReceiverInterface> {
private:
std::string id_;
rtc::scoped_refptr<VideoTrackInterface> track_;
- uint32 ssrc_;
+ uint32_t ssrc_;
VideoProviderInterface* provider_;
};
« no previous file with comments | « talk/app/webrtc/remotevideocapturer_unittest.cc ('k') | talk/app/webrtc/rtpreceiver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698