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

Unified Diff: chrome/common/media_galleries/picasa_test_util.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_test_util.h ('k') | chrome/common/media_galleries/picasa_types.h » ('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.cc
diff --git a/chrome/common/media_galleries/picasa_test_util.cc b/chrome/common/media_galleries/picasa_test_util.cc
index f7a7a3a2021f5aedac052778fc31419400e39ef7..e1ff2d63785ce165c1b05b8d2605723299daf44b 100644
--- a/chrome/common/media_galleries/picasa_test_util.cc
+++ b/chrome/common/media_galleries/picasa_test_util.cc
@@ -6,6 +6,7 @@
#include "base/files/file_path.h"
#include "base/files/file_util.h"
+#include "base/macros.h"
#include "chrome/common/media_galleries/picasa_types.h"
#include "chrome/common/media_galleries/pmp_test_util.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -13,7 +14,7 @@
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,
@@ -45,7 +46,7 @@ void WriteTestAlbumTable(
const base::FilePath& column_file_destination,
const base::FilePath& test_folder_1_path,
const base::FilePath& test_folder_2_path) {
- std::vector<uint32> category_vector;
+ std::vector<uint32_t> category_vector;
category_vector.push_back(kAlbumCategoryFolder);
category_vector.push_back(kAlbumCategoryInvalid);
category_vector.push_back(kAlbumCategoryAlbum);
« no previous file with comments | « chrome/common/media_galleries/picasa_test_util.h ('k') | chrome/common/media_galleries/picasa_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698