Index: chrome/common/media_galleries/pmp_test_util.h |
diff --git a/chrome/common/media_galleries/pmp_test_util.h b/chrome/common/media_galleries/pmp_test_util.h |
index d3f5d3a6360e8890b254890746ff4553acafbe57..007181f30bf4b89f3b7caff5726b5738123afdd5 100644 |
--- a/chrome/common/media_galleries/pmp_test_util.h |
+++ b/chrome/common/media_galleries/pmp_test_util.h |
@@ -5,10 +5,11 @@ |
#ifndef CHROME_COMMON_MEDIA_GALLERIES_PMP_TEST_UTIL_H_ |
#define CHROME_COMMON_MEDIA_GALLERIES_PMP_TEST_UTIL_H_ |
+#include <stdint.h> |
+ |
#include <string> |
#include <vector> |
-#include "base/basictypes.h" |
#include "base/files/file_path.h" |
#include "base/files/scoped_temp_dir.h" |
#include "chrome/common/media_galleries/pmp_constants.h" |
@@ -30,11 +31,11 @@ bool WriteColumnFileFromVector( |
const std::vector<T>& elements_vector); |
std::vector<char> MakeHeader(const PmpFieldType field_type, |
- const uint32 row_count); |
+ const uint32_t row_count); |
-template<class T> |
+template <class T> |
std::vector<char> MakeHeaderAndBody(const PmpFieldType field_type, |
- const uint32 row_count, |
+ const uint32_t row_count, |
const std::vector<T>& elems); |
} // namespace PmpTestUtil |