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 e807bc18af6ae69b4739e4688269a2ebc8d29e8a..6bdadc49d0d251f1cd6752a59dad75e4f9434897 100644 |
--- a/chrome/common/media_galleries/picasa_types.h |
+++ b/chrome/common/media_galleries/picasa_types.h |
@@ -24,6 +24,12 @@ typedef std::map<std::string, AlbumInfo> AlbumMap; |
const char kPicasaAlbumTableName[] = "albumdata"; |
vandebo (ex-Chrome)
2013/08/14 23:48:11
Don't you want these to be extern with the definit
tommycli
2013/08/15 22:52:36
Done. The numbers were used in a switch statement,
vandebo (ex-Chrome)
2013/08/22 17:48:02
Tommy looking into prevalent style.
tommycli
2013/08/22 22:32:50
Done.
|
+const uint32 kAlbumCategoryAlbum = 0; |
+const uint32 kAlbumCategoryFolder = 2; |
+const uint32 kAlbumCategoryInvalid = 0xffff; // Sentinel value. |
+ |
+const char kAlbumTokenPrefix[] = "]album:"; |
+ |
struct AlbumInfo { |
AlbumInfo(); |
AlbumInfo(const std::string& name, const base::Time& timestamp, |