#ifndef CHROME_COMMON_MEDIA_GALLERIES_PICASA_TEST_UTIL_H_
#define CHROME_COMMON_MEDIA_GALLERIES_PICASA_TEST_UTIL_H_
#include <string>
#include <vector>
#include "base/basictypes.h"
namespace base {
class FilePath;
}
namespace picasa {
void WriteAlbumTable(const base::FilePath& column_file_destination,
const std::vector<uint32>& category_vector,
const std::vector<double>& date_vector,
const std::vector<std::string>& filename_vector,
const std::vector<std::string>& name_vector,
const std::vector<std::string>& token_vector,
const std::vector<std::string>& uid_vector);
void WriteTestAlbumTable(const base::FilePath& column_file_destination,
const base::FilePath& test_folder_1_path,
const base::FilePath& test_folder_2_path);
void WriteTestAlbumsImagesIndex(const base::FilePath& test_folder_1_path,
const base::FilePath& test_folder_2_path);
}
#endif