From c80fe5faf691860c344bcc98aa784a6eeefae08d Mon Sep 17 00:00:00 2001 From: "rdevlin.cronin@chromium.org" Date: Wed, 26 Mar 2014 04:36:30 +0000 Subject: Add chrome.webstore API methods to allow sites to see progress of installation Add two chrome.webstore API methods for progress updates: chrome.webstore.setInstallStageListener(function(string stage)) - stage is either "downloading" or "installing" chrome.webstore.setDownloadProgressListener(function(int percent_downloaded)) Update InstallObserver to have methods for install stages. Make WebstoreInstaller provide more frequent download updates (current consumers like WebstoreResult imply this was intended from the start). BUG=308634 Review URL: https://codereview.chromium.org/175263003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@259483 0039d316-1c4b-4281-b951-d872f2087c98 --- extensions/common/extension_messages.h | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'extensions') diff --git a/extensions/common/extension_messages.h b/extensions/common/extension_messages.h index b7ce195..aa69efa 100644 --- a/extensions/common/extension_messages.h +++ b/extensions/common/extension_messages.h @@ -407,13 +407,6 @@ IPC_MESSAGE_CONTROL1(ExtensionMsg_Suspend, IPC_MESSAGE_CONTROL1(ExtensionMsg_CancelSuspend, std::string /* extension_id */) -// Send to renderer once the installation mentioned on -// ExtensionHostMsg_InlineWebstoreInstall is complete. -IPC_MESSAGE_ROUTED3(ExtensionMsg_InlineWebstoreInstallResponse, - int32 /* install id */, - bool /* whether the install was successful */, - std::string /* error */) - // Response to the renderer for ExtensionHostMsg_GetAppInstallState. IPC_MESSAGE_ROUTED2(ExtensionMsg_GetAppInstallStateResponse, std::string /* state */, @@ -573,13 +566,6 @@ IPC_MESSAGE_ROUTED3(ExtensionHostMsg_ContentScriptsExecuting, int32 /* page_id of the _topmost_ frame */, GURL /* url of the _topmost_ frame */) -// Sent by the renderer to implement chrome.webstore.install(). -IPC_MESSAGE_ROUTED4(ExtensionHostMsg_InlineWebstoreInstall, - int32 /* install id */, - int32 /* return route id */, - std::string /* Web Store item ID */, - GURL /* requestor URL */) - // Sent by the renderer when a web page is checking if its app is installed. IPC_MESSAGE_ROUTED3(ExtensionHostMsg_GetAppInstallState, GURL /* requestor_url */, -- cgit v1.1