| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // IPC messages for page rendering. | 5 // IPC messages for page rendering. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 #include "base/process.h" | 8 #include "base/process.h" |
| 9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
| 10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
| (...skipping 1782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1793 string16 /* out - This is ignored.*/) | 1793 string16 /* out - This is ignored.*/) |
| 1794 | 1794 |
| 1795 // Sent when the renderer process is done processing a DataReceived | 1795 // Sent when the renderer process is done processing a DataReceived |
| 1796 // message. | 1796 // message. |
| 1797 IPC_MESSAGE_ROUTED1(ViewHostMsg_DataReceived_ACK, | 1797 IPC_MESSAGE_ROUTED1(ViewHostMsg_DataReceived_ACK, |
| 1798 int /* request_id */) | 1798 int /* request_id */) |
| 1799 | 1799 |
| 1800 IPC_MESSAGE_CONTROL1(ViewHostMsg_RevealFolderInOS, | 1800 IPC_MESSAGE_CONTROL1(ViewHostMsg_RevealFolderInOS, |
| 1801 FilePath /* path */) | 1801 FilePath /* path */) |
| 1802 | 1802 |
| 1803 // Sent when a provisional load on the main frame redirects. | |
| 1804 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidRedirectProvisionalLoad, | |
| 1805 int /* page_id */, | |
| 1806 GURL /* opener url if present, else empty */, | |
| 1807 GURL /* last url */, | |
| 1808 GURL /* url redirected to */) | |
| 1809 | |
| 1810 // Sent when the renderer changes the zoom level for a particular url, so the | 1803 // Sent when the renderer changes the zoom level for a particular url, so the |
| 1811 // browser can update its records. If remember is true, then url is used to | 1804 // browser can update its records. If remember is true, then url is used to |
| 1812 // update the zoom level for all pages in that site. Otherwise, the render | 1805 // update the zoom level for all pages in that site. Otherwise, the render |
| 1813 // view's id is used so that only the menu is updated. | 1806 // view's id is used so that only the menu is updated. |
| 1814 IPC_MESSAGE_ROUTED3(ViewHostMsg_DidZoomURL, | 1807 IPC_MESSAGE_ROUTED3(ViewHostMsg_DidZoomURL, |
| 1815 double /* zoom_level */, | 1808 double /* zoom_level */, |
| 1816 bool /* remember */, | 1809 bool /* remember */, |
| 1817 GURL /* url */) | 1810 GURL /* url */) |
| 1818 | 1811 |
| 1819 // Updates the minimum/maximum allowed zoom percent for this tab from the | 1812 // Updates the minimum/maximum allowed zoom percent for this tab from the |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2020 int /* automation_id */) | 2013 int /* automation_id */) |
| 2021 | 2014 |
| 2022 // Sent to the browser when the renderer detects it is blocked on a pepper | 2015 // Sent to the browser when the renderer detects it is blocked on a pepper |
| 2023 // plugin message for too long. This is also sent when it becomes unhung | 2016 // plugin message for too long. This is also sent when it becomes unhung |
| 2024 // (according to the value of is_hung). The browser can give the user the | 2017 // (according to the value of is_hung). The browser can give the user the |
| 2025 // option of killing the plugin. | 2018 // option of killing the plugin. |
| 2026 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2019 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
| 2027 int /* plugin_child_id */, | 2020 int /* plugin_child_id */, |
| 2028 FilePath /* path */, | 2021 FilePath /* path */, |
| 2029 bool /* is_hung */) | 2022 bool /* is_hung */) |
| OLD | NEW |