| 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;
|
|
|