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

Unified Diff: chrome/common/media_galleries/iphoto_library.cc

Issue 1548153002: Switch to standard integer types in chrome/. (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
« no previous file with comments | « chrome/common/media_galleries/iphoto_library.h ('k') | chrome/common/media_galleries/itunes_library.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/media_galleries/iphoto_library.cc
diff --git a/chrome/common/media_galleries/iphoto_library.cc b/chrome/common/media_galleries/iphoto_library.cc
index 7c580ddd3ec2fd7ba1310e2a1c2559b5b8c59080..03e13c06e35fe1dfb773cd69acd137a5bbb6bcab 100644
--- a/chrome/common/media_galleries/iphoto_library.cc
+++ b/chrome/common/media_galleries/iphoto_library.cc
@@ -11,13 +11,10 @@ Photo::Photo()
: id(0) {
}
-Photo::Photo(uint64 id,
+Photo::Photo(uint64_t id,
const base::FilePath& location,
const base::FilePath& original_location)
- : id(id),
- location(location),
- original_location(original_location) {
-}
+ : id(id), location(location), original_location(original_location) {}
bool Photo::operator<(const Photo& other) const {
return id < other.id;
« no previous file with comments | « chrome/common/media_galleries/iphoto_library.h ('k') | chrome/common/media_galleries/itunes_library.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698