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

Unified Diff: talk/media/devices/yuvframescapturer.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/devices/mobiledevicemanager.cc ('k') | talk/media/devices/yuvframescapturer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/media/devices/yuvframescapturer.h
diff --git a/talk/media/devices/yuvframescapturer.h b/talk/media/devices/yuvframescapturer.h
index 08c8470861d9c0bbf3d09aa60a9f809d24f1e3f8..850a8dfb1deaddb8bb0e75d7db18e9d46ed80845 100644
--- a/talk/media/devices/yuvframescapturer.h
+++ b/talk/media/devices/yuvframescapturer.h
@@ -70,7 +70,7 @@ class YuvFramesCapturer : public VideoCapturer {
protected:
// Override virtual methods of parent class VideoCapturer.
- virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs);
+ virtual bool GetPreferredFourccs(std::vector<uint32_t>* fourccs);
// Read a frame and determine how long to wait for the next frame.
void ReadFrame(bool first_frame);
@@ -83,12 +83,12 @@ class YuvFramesCapturer : public VideoCapturer {
YuvFramesThread* frames_generator_thread;
int width_;
int height_;
- uint32 frame_data_size_;
- uint32 frame_index_;
+ uint32_t frame_data_size_;
+ uint32_t frame_index_;
- int64 barcode_reference_timestamp_millis_;
- int32 barcode_interval_;
- int32 GetBarcodeValue();
+ int64_t barcode_reference_timestamp_millis_;
+ int32_t barcode_interval_;
+ int32_t GetBarcodeValue();
RTC_DISALLOW_COPY_AND_ASSIGN(YuvFramesCapturer);
};
« no previous file with comments | « talk/media/devices/mobiledevicemanager.cc ('k') | talk/media/devices/yuvframescapturer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698