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

Unified Diff: chrome/utility/media_galleries/itunes_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/itunes_library_parser_unittest.cc
diff --git a/chrome/utility/media_galleries/itunes_library_parser_unittest.cc b/chrome/utility/media_galleries/itunes_library_parser_unittest.cc
index cb772f4b99084c23a6ac07d8b0d7c7557fa0b186..63c4ca6ba9cf5274c811983e3f9f9d5b17e4d371 100644
--- a/chrome/utility/media_galleries/itunes_library_parser_unittest.cc
+++ b/chrome/utility/media_galleries/itunes_library_parser_unittest.cc
@@ -2,7 +2,11 @@
// 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 "build/build_config.h"
#include "chrome/common/media_galleries/itunes_library.h"
#include "chrome/utility/media_galleries/itunes_library_parser.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -88,8 +92,10 @@ class ITunesLibraryParserTest : public testing::Test {
CompareLibrary(expected_library_, parser.library());
}
- void AddExpectedTrack(uint32 id, const std::string& location,
- const std::string& artist, const std::string& album) {
+ void AddExpectedTrack(uint32_t id,
+ const std::string& location,
+ const std::string& artist,
+ const std::string& album) {
// On Mac this pretends that C: is a directory.
#if defined(OS_MACOSX)
std::string os_location = "/" + location;
« no previous file with comments | « chrome/utility/media_galleries/itunes_library_parser.cc ('k') | chrome/utility/media_galleries/media_metadata_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698