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

Unified Diff: chrome/common/media_galleries/picasa_types.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/picasa_types.h ('k') | chrome/common/media_galleries/pmp_constants.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/media_galleries/picasa_types.cc
diff --git a/chrome/common/media_galleries/picasa_types.cc b/chrome/common/media_galleries/picasa_types.cc
index 6404259d4d5699e1a5798243b7f5dd52dc07d229..ab433f2befb76bd5028ea404858d5472df425f09 100644
--- a/chrome/common/media_galleries/picasa_types.cc
+++ b/chrome/common/media_galleries/picasa_types.cc
@@ -34,9 +34,9 @@ const char kPicasaAlbumTableName[] = "albumdata";
const char kAlbumTokenPrefix[] = "]album:";
const char kPicasaINIFilename[] = ".picasa.ini";
-const uint32 kAlbumCategoryAlbum = 0;
-const uint32 kAlbumCategoryFolder = 2;
-const uint32 kAlbumCategoryInvalid = 0xffff; // Sentinel value.
+const uint32_t kAlbumCategoryAlbum = 0;
+const uint32_t kAlbumCategoryFolder = 2;
+const uint32_t kAlbumCategoryInvalid = 0xffff; // Sentinel value.
AlbumInfo::AlbumInfo() {
}
« no previous file with comments | « chrome/common/media_galleries/picasa_types.h ('k') | chrome/common/media_galleries/pmp_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698