Index: chrome/common/media_galleries/itunes_library.h |
diff --git a/chrome/common/media_galleries/itunes_library.h b/chrome/common/media_galleries/itunes_library.h |
index be5c74178ba1b27f6a454aa2604c1f0291f79c6e..6fc21b4d70db633125a0c14281406b645c7742c1 100644 |
--- a/chrome/common/media_galleries/itunes_library.h |
+++ b/chrome/common/media_galleries/itunes_library.h |
@@ -8,6 +8,8 @@ |
#ifndef CHROME_COMMON_MEDIA_GALLERIES_ITUNES_LIBRARY_H_ |
#define CHROME_COMMON_MEDIA_GALLERIES_ITUNES_LIBRARY_H_ |
+#include <stdint.h> |
+ |
#include <map> |
#include <set> |
@@ -18,10 +20,10 @@ namespace parser { |
struct Track { |
Track(); |
- Track(uint64 id, const base::FilePath& location); |
+ Track(uint64_t id, const base::FilePath& location); |
bool operator<(const Track& other) const; |
- uint64 id; |
+ uint64_t id; |
base::FilePath location; |
}; |