| 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 7c27377800653ab164d20c23f7b9c5810f48a85b..1d808bc9503028fe59a0dce7afc1331fb6ae665b 100644
|
| --- a/chrome/common/extensions/chrome_utility_extensions_messages.h
|
| +++ b/chrome/common/extensions/chrome_utility_extensions_messages.h
|
| @@ -13,7 +13,6 @@
|
| #include "chrome/common/media_galleries/itunes_library.h"
|
| #include "chrome/common/media_galleries/metadata_types.h"
|
| #include "chrome/common/media_galleries/picasa_types.h"
|
| -#include "extensions/common/update_manifest.h"
|
| #include "ipc/ipc_message_macros.h"
|
| #include "ipc/ipc_platform_file.h"
|
|
|
| @@ -23,19 +22,6 @@
|
|
|
| #define IPC_MESSAGE_START ChromeUtilityExtensionsMsgStart
|
|
|
| -IPC_STRUCT_TRAITS_BEGIN(UpdateManifest::Result)
|
| - IPC_STRUCT_TRAITS_MEMBER(extension_id)
|
| - IPC_STRUCT_TRAITS_MEMBER(version)
|
| - IPC_STRUCT_TRAITS_MEMBER(browser_min_version)
|
| - IPC_STRUCT_TRAITS_MEMBER(package_hash)
|
| - IPC_STRUCT_TRAITS_MEMBER(crx_url)
|
| -IPC_STRUCT_TRAITS_END()
|
| -
|
| -IPC_STRUCT_TRAITS_BEGIN(UpdateManifest::Results)
|
| - IPC_STRUCT_TRAITS_MEMBER(list)
|
| - IPC_STRUCT_TRAITS_MEMBER(daystart_elapsed_seconds)
|
| -IPC_STRUCT_TRAITS_END()
|
| -
|
| #if defined(OS_MACOSX)
|
| IPC_STRUCT_TRAITS_BEGIN(iphoto::parser::Photo)
|
| IPC_STRUCT_TRAITS_MEMBER(id)
|
| @@ -103,10 +89,6 @@ IPC_MESSAGE_CONTROL2(ChromeUtilityMsg_UnzipToDir,
|
| base::FilePath /* zip_file */,
|
| base::FilePath /* dir */)
|
|
|
| -// Tell the utility process to parse the given xml document.
|
| -IPC_MESSAGE_CONTROL1(ChromeUtilityMsg_ParseUpdateManifest,
|
| - std::string /* xml document contents */)
|
| -
|
| // Tell the utility process to decode the given image data, which is base64
|
| // encoded.
|
| IPC_MESSAGE_CONTROL1(ChromeUtilityMsg_DecodeImageBase64,
|
| @@ -213,16 +195,6 @@ IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_UnzipToDir_Succeeded,
|
| IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_UnzipToDir_Failed,
|
| std::string /* error */)
|
|
|
| -// Reply when the utility process has succeeded in parsing an update manifest
|
| -// xml document.
|
| -IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_ParseUpdateManifest_Succeeded,
|
| - UpdateManifest::Results /* updates */)
|
| -
|
| -// Reply when an error occurred parsing the update manifest. |error_message|
|
| -// is a description of what went wrong suitable for logging.
|
| -IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_ParseUpdateManifest_Failed,
|
| - std::string /* error_message, if any */)
|
| -
|
| // Reply when the utility process successfully parsed a JSON string.
|
| //
|
| // WARNING: The result can be of any Value subclass type, but we can't easily
|
|
|