Index: chrome/common/extensions/extension_messages.h |
diff --git a/chrome/common/extensions/extension_messages.h b/chrome/common/extensions/extension_messages.h |
index c1167743d307d9b325d73941d26f0f741dab54ff..be92d1a97f88866c581ff53d2f82e782705c9bdb 100644 |
--- a/chrome/common/extensions/extension_messages.h |
+++ b/chrome/common/extensions/extension_messages.h |
@@ -601,11 +601,22 @@ IPC_MESSAGE_ROUTED2(ExtensionHostMsg_DidGetApplicationInfo, |
WebApplicationInfo) |
// Sent by the renderer to implement chrome.webstore.install(). |
-IPC_MESSAGE_ROUTED4(ExtensionHostMsg_InlineWebstoreInstall, |
+IPC_MESSAGE_ROUTED5(ExtensionHostMsg_InlineWebstoreInstall, |
int32 /* install id */, |
int32 /* return route id */, |
std::string /* Web Store item ID */, |
- GURL /* requestor URL */) |
+ GURL /* requestor URL */, |
+ int /* listeners_mask */) |
+ |
+// Sent to the renderer if install stage updates were requested for an inline |
+// install. |
+IPC_MESSAGE_ROUTED1(ExtensionMsg_InlineInstallStageChanged, |
+ std::string /* stage */) |
+ |
+// Sent to the renderer if download progress updates were requested for an |
+// inline install. |
+IPC_MESSAGE_ROUTED1(ExtensionMsg_InlineInstallDownloadProgress, |
+ int /* percent_downloaded */) |
// Sent by the renderer when a web page is checking if its app is installed. |
IPC_MESSAGE_ROUTED3(ExtensionHostMsg_GetAppInstallState, |