#ifndef CHROME_COMMON_MEDIA_GALLERIES_ITUNES_LIBRARY_H_
#define CHROME_COMMON_MEDIA_GALLERIES_ITUNES_LIBRARY_H_
#include <map>
#include <set>
#include "base/files/file_path.h"
namespace itunes {
namespace parser {
struct Track {
Track();
Track(uint64 id, const base::FilePath& location);
bool operator<(const Track& other) const;
uint64 id;
base::FilePath location;
};
typedef std::set<Track> Album;
typedef std::map<std::string , Album> Albums;
typedef std::map<std::string , Albums> Library;
}
}
#endif