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

Unified Diff: talk/media/base/fakemediaprocessor.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/media/base/fakemediaprocessor.h
diff --git a/talk/media/base/fakemediaprocessor.h b/talk/media/base/fakemediaprocessor.h
index 0100b7b6d2ab5d4213e77cc3a6807920ad090407..25f932293b2f6a276562df146e9fe1791f066f5e 100644
--- a/talk/media/base/fakemediaprocessor.h
+++ b/talk/media/base/fakemediaprocessor.h
@@ -41,13 +41,13 @@ class FakeMediaProcessor : public VoiceProcessor {
}
virtual ~FakeMediaProcessor() {}
- virtual void OnFrame(uint32 ssrc,
+ virtual void OnFrame(uint32_t ssrc,
MediaProcessorDirection direction,
AudioFrame* frame) {
++voice_frame_count_;
}
- virtual void OnVoiceMute(uint32 ssrc, bool muted) {}
- virtual void OnVideoMute(uint32 ssrc, bool muted) {}
+ virtual void OnVoiceMute(uint32_t ssrc, bool muted) {}
+ virtual void OnVideoMute(uint32_t ssrc, bool muted) {}
int voice_frame_count() const { return voice_frame_count_; }

Powered by Google App Engine
This is Rietveld 408576698