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

Unified Diff: talk/media/base/videocapturer_unittest.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: 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/videocapturer_unittest.cc
diff --git a/talk/media/base/videocapturer_unittest.cc b/talk/media/base/videocapturer_unittest.cc
index 70902325e9f1d9b26e7edc8adf99055317c07b59..29b95d018080b407782df87456076d9b196d5517 100644
--- a/talk/media/base/videocapturer_unittest.cc
+++ b/talk/media/base/videocapturer_unittest.cc
@@ -44,7 +44,7 @@ namespace {
const int kMsCallbackWait = 500;
// For HD only the height matters.
const int kMinHdHeight = 720;
-const uint32 kTimeout = 5000U;
+const uint32_t kTimeout = 5000U;
} // namespace
@@ -88,13 +88,13 @@ class VideoCapturerTest
int video_frames_received() const {
return video_frames_received_;
}
- int64 last_frame_elapsed_time() const { return last_frame_elapsed_time_; }
+ int64_t last_frame_elapsed_time() const { return last_frame_elapsed_time_; }
cricket::FakeVideoCapturer capturer_;
cricket::CaptureState capture_state_;
int num_state_changes_;
int video_frames_received_;
- int64 last_frame_elapsed_time_;
+ int64_t last_frame_elapsed_time_;
cricket::FakeVideoRenderer renderer_;
bool expects_rotation_applied_;
};

Powered by Google App Engine
This is Rietveld 408576698