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

Unified Diff: chrome/utility/media_galleries/iphoto_library_parser_unittest.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
Index: chrome/utility/media_galleries/iphoto_library_parser_unittest.cc
diff --git a/chrome/utility/media_galleries/iphoto_library_parser_unittest.cc b/chrome/utility/media_galleries/iphoto_library_parser_unittest.cc
index 7fb0fc7b92c5b52af546729fe9d6e902aba7ed0c..4dc6885937f6a5b8d555c24edc6131303e388a58 100644
--- a/chrome/utility/media_galleries/iphoto_library_parser_unittest.cc
+++ b/chrome/utility/media_galleries/iphoto_library_parser_unittest.cc
@@ -2,7 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include <stdint.h>
+
#include "base/logging.h"
+#include "base/macros.h"
#include "chrome/common/media_galleries/iphoto_library.h"
#include "chrome/utility/media_galleries/iphoto_library_parser.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -161,7 +164,7 @@ class IPhotoLibraryParserTest : public testing::Test {
CompareLibrary(expected_library_, parser.library());
}
- void AddExpectedPhoto(uint32 id,
+ void AddExpectedPhoto(uint32_t id,
const std::string& location,
const std::string& album) {
parser::Photo photo(id, base::FilePath::FromUTF8Unsafe(location),
« no previous file with comments | « chrome/utility/media_galleries/iphoto_library_parser.cc ('k') | chrome/utility/media_galleries/itunes_library_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698