| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Chrome-specific IPC messages for extensions. | 5 // Chrome-specific IPC messages for extensions. |
| 6 // Extension-related messages that aren't specific to Chrome live in | 6 // Extension-related messages that aren't specific to Chrome live in |
| 7 // extensions/common/extension_messages.h. | 7 // extensions/common/extension_messages.h. |
| 8 // | 8 // |
| 9 // Multiply-included message file, hence no include guard. | 9 // Multiply-included message file, hence no include guard. |
| 10 | 10 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 #define IPC_MESSAGE_START ChromeExtensionMsgStart | 30 #define IPC_MESSAGE_START ChromeExtensionMsgStart |
| 31 | 31 |
| 32 IPC_ENUM_TRAITS_MAX_VALUE(extensions::api::webstore::InstallStage, | 32 IPC_ENUM_TRAITS_MAX_VALUE(extensions::api::webstore::InstallStage, |
| 33 extensions::api::webstore::INSTALL_STAGE_INSTALLING) | 33 extensions::api::webstore::INSTALL_STAGE_INSTALLING) |
| 34 IPC_ENUM_TRAITS_MAX_VALUE(extensions::webstore_install::Result, | 34 IPC_ENUM_TRAITS_MAX_VALUE(extensions::webstore_install::Result, |
| 35 extensions::webstore_install::RESULT_LAST) | 35 extensions::webstore_install::RESULT_LAST) |
| 36 | 36 |
| 37 // Messages sent from the browser to the renderer. | 37 // Messages sent from the browser to the renderer. |
| 38 | 38 |
| 39 // Toggles visual muting of the render view area. This is on when a constrained | |
| 40 // window is showing. | |
| 41 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized, | |
| 42 bool /* deemphazied */) | |
| 43 | |
| 44 // Sent to the renderer if install stage updates were requested for an inline | 39 // Sent to the renderer if install stage updates were requested for an inline |
| 45 // install. | 40 // install. |
| 46 IPC_MESSAGE_ROUTED1(ExtensionMsg_InlineInstallStageChanged, | 41 IPC_MESSAGE_ROUTED1(ExtensionMsg_InlineInstallStageChanged, |
| 47 extensions::api::webstore::InstallStage /* stage */) | 42 extensions::api::webstore::InstallStage /* stage */) |
| 48 | 43 |
| 49 // Sent to the renderer if download progress updates were requested for an | 44 // Sent to the renderer if download progress updates were requested for an |
| 50 // inline install. | 45 // inline install. |
| 51 IPC_MESSAGE_ROUTED1(ExtensionMsg_InlineInstallDownloadProgress, | 46 IPC_MESSAGE_ROUTED1(ExtensionMsg_InlineInstallDownloadProgress, |
| 52 int /* percent_downloaded */) | 47 int /* percent_downloaded */) |
| 53 | 48 |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 | 145 |
| 151 // Messages sent from the renderer to the browser. | 146 // Messages sent from the renderer to the browser. |
| 152 | 147 |
| 153 | 148 |
| 154 // Sent by the renderer to implement chrome.webstore.install(). | 149 // Sent by the renderer to implement chrome.webstore.install(). |
| 155 IPC_MESSAGE_ROUTED4(ExtensionHostMsg_InlineWebstoreInstall, | 150 IPC_MESSAGE_ROUTED4(ExtensionHostMsg_InlineWebstoreInstall, |
| 156 int32_t /* install id */, | 151 int32_t /* install id */, |
| 157 int32_t /* return route id */, | 152 int32_t /* return route id */, |
| 158 std::string /* Web Store item ID */, | 153 std::string /* Web Store item ID */, |
| 159 int /* listeners_mask */) | 154 int /* listeners_mask */) |
| OLD | NEW |