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

Unified Diff: chrome/common/extensions/chrome_utility_extensions_messages.h

Issue 2615423002: Convert utility process ParseMediaMetadata IPC to mojo (Closed)
Patch Set: Security review comments. Created 3 years, 11 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
« no previous file with comments | « chrome/common/extensions/OWNERS ('k') | chrome/common/extensions/media_parser.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/chrome_utility_extensions_messages.h
diff --git a/chrome/common/extensions/chrome_utility_extensions_messages.h b/chrome/common/extensions/chrome_utility_extensions_messages.h
index fcf59fbb92df98f6f75f7c9f6c724df620dd4812..51ceb4bd6e495975fe05916f2941f687d3740367 100644
--- a/chrome/common/extensions/chrome_utility_extensions_messages.h
+++ b/chrome/common/extensions/chrome_utility_extensions_messages.h
@@ -55,11 +55,6 @@ IPC_STRUCT_TRAITS_BEGIN(picasa::FolderINIContents)
IPC_STRUCT_TRAITS_END()
#endif // defined(OS_WIN) || defined(OS_MACOSX)
-IPC_STRUCT_TRAITS_BEGIN(metadata::AttachedImage)
- IPC_STRUCT_TRAITS_MEMBER(type)
- IPC_STRUCT_TRAITS_MEMBER(data)
-IPC_STRUCT_TRAITS_END()
-
//------------------------------------------------------------------------------
// Utility process messages:
// These are messages from the browser to the utility process.
@@ -98,11 +93,6 @@ IPC_MESSAGE_CONTROL2(ChromeUtilityMsg_CheckMediaFile,
int64_t /* milliseconds_of_decoding */,
IPC::PlatformFileForTransit /* Media file to parse */)
-IPC_MESSAGE_CONTROL3(ChromeUtilityMsg_ParseMediaMetadata,
- std::string /* mime_type */,
- int64_t /* total_size */,
- bool /* get_attached_images */)
-
IPC_MESSAGE_CONTROL2(ChromeUtilityMsg_RequestBlobBytes_Finished,
int64_t /* request_id */,
std::string /* bytes */)
@@ -160,12 +150,6 @@ IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_IndexPicasaAlbumsContents_Finished,
IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_CheckMediaFile_Finished,
bool /* passed_checks */)
-IPC_MESSAGE_CONTROL3(
- ChromeUtilityHostMsg_ParseMediaMetadata_Finished,
- bool /* parse_success */,
- base::DictionaryValue /* metadata */,
- std::vector<metadata::AttachedImage> /* attached_images */)
-
IPC_MESSAGE_CONTROL3(ChromeUtilityHostMsg_RequestBlobBytes,
int64_t /* request_id */,
int64_t /* start_byte */,
« no previous file with comments | « chrome/common/extensions/OWNERS ('k') | chrome/common/extensions/media_parser.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698