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

Unified Diff: chrome/browser/media_galleries/linux/mtp_device_object_enumerator.cc

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: chrome/browser/media_galleries/linux/mtp_device_object_enumerator.cc
diff --git a/chrome/browser/media_galleries/linux/mtp_device_object_enumerator.cc b/chrome/browser/media_galleries/linux/mtp_device_object_enumerator.cc
index 914d797c96b3b10c6943d00976c98f8205e44ba2..af5b12578fc5d813d530779b060b8a5594daac64 100644
--- a/chrome/browser/media_galleries/linux/mtp_device_object_enumerator.cc
+++ b/chrome/browser/media_galleries/linux/mtp_device_object_enumerator.cc
@@ -27,7 +27,7 @@ base::FilePath MTPDeviceObjectEnumerator::Next() {
return base::FilePath(file_entries_[index_].file_name());
}
-int64 MTPDeviceObjectEnumerator::Size() {
+int64_t MTPDeviceObjectEnumerator::Size() {
if (!IsIndexReadyAndInRange())
return 0;
return file_entries_[index_].file_size();
@@ -45,7 +45,7 @@ base::Time MTPDeviceObjectEnumerator::LastModifiedTime() {
return base::Time::FromTimeT(file_entries_[index_].modification_time());
}
-bool MTPDeviceObjectEnumerator::GetEntryId(uint32* entry_id) const {
+bool MTPDeviceObjectEnumerator::GetEntryId(uint32_t* entry_id) const {
DCHECK(entry_id);
if (!IsIndexReadyAndInRange())
return false;

Powered by Google App Engine
This is Rietveld 408576698