Chromium Code Reviews| Index: chrome/common/extensions/chrome_extension_messages.h |
| diff --git a/chrome/common/extensions/chrome_extension_messages.h b/chrome/common/extensions/chrome_extension_messages.h |
| index e3aaf6f2b35ce18c77cf138e586760c99ac7a43e..ca9812e87ce00bc7a24ad2ae0c69caf4b3a07ab7 100644 |
| --- a/chrome/common/extensions/chrome_extension_messages.h |
| +++ b/chrome/common/extensions/chrome_extension_messages.h |
| @@ -29,6 +29,8 @@ |
| #define IPC_MESSAGE_START ChromeExtensionMsgStart |
| +// TODO(catmullings): Remove these ipc enums once all ipc messages here are |
|
palmer
2017/05/08 23:39:03
Might be good to attach a bug number to this TODO.
catmullings
2017/05/23 02:38:37
Done.
|
| +// converted to mojo. |
| IPC_ENUM_TRAITS_MAX_VALUE(extensions::api::webstore::InstallStage, |
| extensions::api::webstore::INSTALL_STAGE_INSTALLING) |
| IPC_ENUM_TRAITS_MAX_VALUE(extensions::webstore_install::Result, |
| @@ -36,24 +38,6 @@ IPC_ENUM_TRAITS_MAX_VALUE(extensions::webstore_install::Result, |
| // Messages sent from the browser to the renderer. |
| -// Sent to the renderer if install stage updates were requested for an inline |
| -// install. |
| -IPC_MESSAGE_ROUTED1(ExtensionMsg_InlineInstallStageChanged, |
| - extensions::api::webstore::InstallStage /* stage */) |
| - |
| -// Sent to the renderer if download progress updates were requested for an |
| -// inline install. |
| -IPC_MESSAGE_ROUTED1(ExtensionMsg_InlineInstallDownloadProgress, |
| - int /* percent_downloaded */) |
| - |
| -// Send to renderer once the installation mentioned on |
| -// ExtensionHostMsg_InlineWebstoreInstall is complete. |
| -IPC_MESSAGE_ROUTED4(ExtensionMsg_InlineWebstoreInstallResponse, |
| - int32_t /* install id */, |
| - bool /* whether the install was successful */, |
| - std::string /* error */, |
| - extensions::webstore_install::Result /* result */) |
| - |
| IPC_STRUCT_TRAITS_BEGIN(ui::AXNodeData) |
| IPC_STRUCT_TRAITS_MEMBER(id) |
| IPC_STRUCT_TRAITS_MEMBER(role) |
| @@ -140,12 +124,3 @@ IPC_MESSAGE_ROUTED2(ExtensionMsg_AccessibilityEvent, |
| IPC_MESSAGE_ROUTED1(ExtensionMsg_AccessibilityLocationChange, |
| ExtensionMsg_AccessibilityLocationChangeParams) |
| -// Messages sent from the renderer to the browser. |
| - |
| - |
| -// Sent by the renderer to implement chrome.webstore.install(). |
| -IPC_MESSAGE_ROUTED4(ExtensionHostMsg_InlineWebstoreInstall, |
| - int32_t /* install id */, |
| - int32_t /* return route id */, |
| - std::string /* Web Store item ID */, |
| - int /* listeners_mask */) |