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

Unified Diff: chrome/common/media_galleries/picasa_types.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_galleries/picasa_test_util.cc ('k') | chrome/common/media_galleries/picasa_types.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/media_galleries/picasa_types.h
diff --git a/chrome/common/media_galleries/picasa_types.h b/chrome/common/media_galleries/picasa_types.h
index 03cc78c204d938fb384f7741ab491ec36707f597..ba3adeee1d7e852f116eb8e2d6517d3a9e13b7a6 100644
--- a/chrome/common/media_galleries/picasa_types.h
+++ b/chrome/common/media_galleries/picasa_types.h
@@ -5,6 +5,8 @@
#ifndef CHROME_COMMON_MEDIA_GALLERIES_PICASA_TYPES_H_
#define CHROME_COMMON_MEDIA_GALLERIES_PICASA_TYPES_H_
+#include <stdint.h>
+
#include <map>
#include <set>
#include <string>
@@ -37,9 +39,9 @@ extern const char kPicasaINIFilename[];
extern const char kPicasaAlbumTableName[];
extern const char kAlbumTokenPrefix[];
-extern const uint32 kAlbumCategoryAlbum;
-extern const uint32 kAlbumCategoryFolder;
-extern const uint32 kAlbumCategoryInvalid;
+extern const uint32_t kAlbumCategoryAlbum;
+extern const uint32_t kAlbumCategoryFolder;
+extern const uint32_t kAlbumCategoryInvalid;
struct AlbumInfo {
AlbumInfo();
« no previous file with comments | « chrome/common/media_galleries/picasa_test_util.cc ('k') | chrome/common/media_galleries/picasa_types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698