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

Unified Diff: media/cast/test/fake_media_source.h

Issue 1534273002: Switch to standard integer types in media/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 5 years 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: media/cast/test/fake_media_source.h
diff --git a/media/cast/test/fake_media_source.h b/media/cast/test/fake_media_source.h
index 3ca55a04d4a5652b09ddd8fddfc9c47e4a9ccbde..af100aa1d343e0c0eb808e3fab73f3b69aa3e750 100644
--- a/media/cast/test/fake_media_source.h
+++ b/media/cast/test/fake_media_source.h
@@ -121,7 +121,7 @@ class FakeMediaSource : public media::AudioConverter::InputCallback {
base::TimeTicks next_frame_size_change_time_;
scoped_refptr<AudioFrameInput> audio_frame_input_;
scoped_refptr<VideoFrameInput> video_frame_input_;
- uint8 synthetic_count_;
+ uint8_t synthetic_count_;
base::TickClock* const clock_; // Not owned by this class.
// Time when the stream starts.
@@ -156,7 +156,7 @@ class FakeMediaSource : public media::AudioConverter::InputCallback {
std::queue<scoped_refptr<VideoFrame> > video_frame_queue_;
std::queue<scoped_refptr<VideoFrame> > inserted_video_frame_queue_;
- int64 video_first_pts_;
+ int64_t video_first_pts_;
bool video_first_pts_set_;
base::TimeDelta last_video_frame_timestamp_;

Powered by Google App Engine
This is Rietveld 408576698