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

Unified Diff: talk/media/devices/mobiledevicemanager.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: 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/linuxdevicemanager.cc ('k') | talk/media/devices/yuvframescapturer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/media/devices/mobiledevicemanager.cc
diff --git a/talk/media/devices/mobiledevicemanager.cc b/talk/media/devices/mobiledevicemanager.cc
index 39860edf9dbbdcfafec2bd9c7e866b9e4588dd3d..2a886a36d4e860c530d595c4b4b8671a8bf099b0 100644
--- a/talk/media/devices/mobiledevicemanager.cc
+++ b/talk/media/devices/mobiledevicemanager.cc
@@ -53,10 +53,10 @@ bool MobileDeviceManager::GetVideoCaptureDevices(std::vector<Device>* devs) {
if (!info)
return false;
- uint32 num_cams = info->NumberOfDevices();
+ uint32_t num_cams = info->NumberOfDevices();
char id[256];
char name[256];
- for (uint32 i = 0; i < num_cams; ++i) {
+ for (uint32_t i = 0; i < num_cams; ++i) {
if (info->GetDeviceName(i, name, arraysize(name), id, arraysize(id)))
continue;
devs->push_back(Device(name, id));
« no previous file with comments | « talk/media/devices/linuxdevicemanager.cc ('k') | talk/media/devices/yuvframescapturer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698