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

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

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/webrtc_logging_message_data.cc ('k') | chrome/common/media_galleries/iphoto_library.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/media_galleries/iphoto_library.h
diff --git a/chrome/common/media_galleries/iphoto_library.h b/chrome/common/media_galleries/iphoto_library.h
index 00e8758a429dcaffc184989d867e7199ba48bb83..dcae0ec44d3f3aeaaac1246445ee2b43bb4ce411 100644
--- a/chrome/common/media_galleries/iphoto_library.h
+++ b/chrome/common/media_galleries/iphoto_library.h
@@ -8,6 +8,8 @@
#ifndef CHROME_COMMON_MEDIA_GALLERIES_IPHOTO_LIBRARY_H_
#define CHROME_COMMON_MEDIA_GALLERIES_IPHOTO_LIBRARY_H_
+#include <stdint.h>
+
#include <map>
#include <set>
@@ -18,17 +20,17 @@ namespace parser {
struct Photo {
Photo();
- Photo(uint64 id,
+ Photo(uint64_t id,
const base::FilePath& location,
const base::FilePath& original_location);
bool operator<(const Photo& other) const;
- uint64 id;
+ uint64_t id;
base::FilePath location;
base::FilePath original_location;
};
-typedef std::set<uint64> Album;
+typedef std::set<uint64_t> Album;
typedef std::map<std::string /*album name*/, Album> Albums;
struct Library {
« no previous file with comments | « chrome/common/media/webrtc_logging_message_data.cc ('k') | chrome/common/media_galleries/iphoto_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698