Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1025)

Unified Diff: chrome/common/chrome_utility_messages.h

Issue 250143002: Media Galleries API: Audio/Video attached pictures support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/chrome_utility_messages.h
diff --git a/chrome/common/chrome_utility_messages.h b/chrome/common/chrome_utility_messages.h
index c37556541828ffc42136e89a97f32d6dbbc1b9b3..fb4fd6df11b6febb7bd08a72b5da45d35bfdb496 100644
--- a/chrome/common/chrome_utility_messages.h
+++ b/chrome/common/chrome_utility_messages.h
@@ -291,9 +291,9 @@ IPC_MESSAGE_CONTROL2(ChromeUtilityMsg_CheckMediaFile,
int64 /* milliseconds_of_decoding */,
IPC::PlatformFileForTransit /* Media file to parse */)
-IPC_MESSAGE_CONTROL2(ChromeUtilityMsg_ParseMediaMetadata,
- std::string /* mime_type */,
- int64 /* total_size */)
+IPC_MESSAGE_CONTROL3(ChromeUtilityMsg_ParseMediaMetadata,
+ std::string /* mime_type */, int64 /* total_size */,
+ bool /* get_attached_pictures */)
IPC_MESSAGE_CONTROL2(ChromeUtilityMsg_RequestBlobBytes_Finished,
int64 /* request_id */,
@@ -481,9 +481,11 @@ IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_IndexPicasaAlbumsContents_Finished,
IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_CheckMediaFile_Finished,
bool /* passed_checks */)
-IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_ParseMediaMetadata_Finished,
+IPC_MESSAGE_CONTROL4(ChromeUtilityHostMsg_ParseMediaMetadata_Finished,
bool /* parse_success */,
- base::DictionaryValue /* metadata */)
+ base::DictionaryValue /* metadata */,
+ std::vector<std::string> /* attached_pictures_bytes */,
+ std::vector<std::string> /* attached_pictures_types */)
IPC_MESSAGE_CONTROL3(ChromeUtilityHostMsg_RequestBlobBytes,
int64 /* request_id */,

Powered by Google App Engine
This is Rietveld 408576698