Index: chrome/common/media_galleries/picasa_types.h |
diff --git a/chrome/common/media_galleries/picasa_types.h b/chrome/common/media_galleries/picasa_types.h |
index 58dcf32a410137031bd913e3c6864bb493243adb..7b18bbdb8120253da5bd060150338dfbdfde87e4 100644 |
--- a/chrome/common/media_galleries/picasa_types.h |
+++ b/chrome/common/media_galleries/picasa_types.h |
@@ -13,6 +13,13 @@ |
namespace picasa { |
+struct AlbumInfo; |
+ |
+typedef std::set<base::FilePath> AlbumImages; |
+typedef std::set<std::string> AlbumUIDSet; |
+typedef std::map<std::string, AlbumImages> AlbumImagesMap; |
+typedef std::map<std::string, AlbumInfo> AlbumMap; |
+ |
const char kPicasaAlbumTableName[] = "albumdata"; |
struct AlbumInfo { |
@@ -56,6 +63,11 @@ struct AlbumTableFilesForTransit { |
IPC::PlatformFileForTransit uid_file; |
}; |
+struct FolderINIContents { |
+ base::FilePath folder_path; |
+ std::string ini_contents; |
+}; |
+ |
void CloseAlbumTableFiles(AlbumTableFiles* table_files); |
} // namespace picasa |