| Index: chrome/common/extensions/extension_messages.h
|
| diff --git a/chrome/common/extensions/extension_messages.h b/chrome/common/extensions/extension_messages.h
|
| index f09841a7b6e456a3e6d4fb42724d08ba1257b618..32dbd91499d16f0afc26544bd21687b3d2099b01 100644
|
| --- a/chrome/common/extensions/extension_messages.h
|
| +++ b/chrome/common/extensions/extension_messages.h
|
| @@ -315,10 +315,13 @@ IPC_MESSAGE_ROUTED1(ExtensionHostMsg_InstallApplication,
|
| WebApplicationInfo)
|
|
|
| // Sent by the renderer to implement chrome.webstore.install().
|
| -IPC_MESSAGE_ROUTED1(ExtensionHostMsg_InlineWebstoreInstall,
|
| - std::string /* Web Store item ID */)
|
| +IPC_MESSAGE_ROUTED3(ExtensionHostMsg_InlineWebstoreInstall,
|
| + int32 /* install id */,
|
| + std::string /* Web Store item ID */,
|
| + GURL /* requestor URL */)
|
|
|
| // Send to renderer once the installation mentioned above is complete.
|
| -IPC_MESSAGE_ROUTED2(ExtensionMsg_InlineWebstoreInstallResponse,
|
| +IPC_MESSAGE_ROUTED3(ExtensionMsg_InlineWebstoreInstallResponse,
|
| + int32 /* install id */,
|
| bool /* whether the install was successful */,
|
| std::string /* error */)
|
|
|