| Index: chrome/common/media_galleries/itunes_library.cc
|
| diff --git a/chrome/common/media_galleries/itunes_library.cc b/chrome/common/media_galleries/itunes_library.cc
|
| index 853eb7f725dad0385f9615a973a2a4e3057bd624..271bca9def4e84dfc5ee141f645d957ab8908534 100644
|
| --- a/chrome/common/media_galleries/itunes_library.cc
|
| +++ b/chrome/common/media_galleries/itunes_library.cc
|
| @@ -11,10 +11,8 @@ Track::Track()
|
| : id(0) {
|
| }
|
|
|
| -Track::Track(uint64 id, const base::FilePath& location)
|
| - : id(id),
|
| - location(location) {
|
| -}
|
| +Track::Track(uint64_t id, const base::FilePath& location)
|
| + : id(id), location(location) {}
|
|
|
| bool Track::operator<(const Track& other) const {
|
| return id < other.id;
|
|
|