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

Unified Diff: chrome/common/media_galleries/picasa_test_util.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/itunes_library.cc ('k') | chrome/common/media_galleries/picasa_test_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/media_galleries/picasa_test_util.h
diff --git a/chrome/common/media_galleries/picasa_test_util.h b/chrome/common/media_galleries/picasa_test_util.h
index 616f2bfb801cb4a1e6af51a4e4b4ed4adb31d3d9..480b081c664356ff21e4d8c811736cb2fdea956d 100644
--- a/chrome/common/media_galleries/picasa_test_util.h
+++ b/chrome/common/media_galleries/picasa_test_util.h
@@ -5,10 +5,11 @@
#ifndef CHROME_COMMON_MEDIA_GALLERIES_PICASA_TEST_UTIL_H_
#define CHROME_COMMON_MEDIA_GALLERIES_PICASA_TEST_UTIL_H_
+#include <stdint.h>
+
#include <string>
#include <vector>
-#include "base/basictypes.h"
namespace base {
class FilePath;
@@ -17,7 +18,7 @@ class FilePath;
namespace picasa {
void WriteAlbumTable(const base::FilePath& column_file_destination,
- const std::vector<uint32>& category_vector,
+ const std::vector<uint32_t>& category_vector,
const std::vector<double>& date_vector,
const std::vector<std::string>& filename_vector,
const std::vector<std::string>& name_vector,
« no previous file with comments | « chrome/common/media_galleries/itunes_library.cc ('k') | chrome/common/media_galleries/picasa_test_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698