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

Unified Diff: chrome/common/media_galleries/itunes_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/itunes_library.h ('k') | chrome/common/media_galleries/picasa_test_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/media_galleries/itunes_library.cc
diff --git a/chrome/common/media_galleries/itunes_library.cc b/chrome/common/media_galleries/itunes_library.cc
index 853eb7f725dad0385f9615a973a2a4e3057bd624..271bca9def4e84dfc5ee141f645d957ab8908534 100644
--- a/chrome/common/media_galleries/itunes_library.cc
+++ b/chrome/common/media_galleries/itunes_library.cc
@@ -11,10 +11,8 @@ Track::Track()
: id(0) {
}
-Track::Track(uint64 id, const base::FilePath& location)
- : id(id),
- location(location) {
-}
+Track::Track(uint64_t id, const base::FilePath& location)
+ : id(id), location(location) {}
bool Track::operator<(const Track& other) const {
return id < other.id;
« no previous file with comments | « chrome/common/media_galleries/itunes_library.h ('k') | chrome/common/media_galleries/picasa_test_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698