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 1772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1783 string16 /* in - alert message */, | 1783 string16 /* in - alert message */, |
1784 bool /* in - is a reload */, | 1784 bool /* in - is a reload */, |
1785 bool /* out - success */, | 1785 bool /* out - success */, |
1786 string16 /* out - This is ignored.*/) | 1786 string16 /* out - This is ignored.*/) |
1787 | 1787 |
1788 // Sent when the renderer process is done processing a DataReceived | 1788 // Sent when the renderer process is done processing a DataReceived |
1789 // message. | 1789 // message. |
1790 IPC_MESSAGE_ROUTED1(ViewHostMsg_DataReceived_ACK, | 1790 IPC_MESSAGE_ROUTED1(ViewHostMsg_DataReceived_ACK, |
1791 int /* request_id */) | 1791 int /* request_id */) |
1792 | 1792 |
1793 IPC_MESSAGE_CONTROL1(ViewHostMsg_RevealFolderInOS, | |
1794 FilePath /* path */) | |
1795 | |
1796 // Sent when a provisional load on the main frame redirects. | 1793 // Sent when a provisional load on the main frame redirects. |
1797 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidRedirectProvisionalLoad, | 1794 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidRedirectProvisionalLoad, |
1798 int /* page_id */, | 1795 int /* page_id */, |
1799 GURL /* opener url if present, else empty */, | 1796 GURL /* opener url if present, else empty */, |
1800 GURL /* last url */, | 1797 GURL /* last url */, |
1801 GURL /* url redirected to */) | 1798 GURL /* url redirected to */) |
1802 | 1799 |
1803 // Sent when the renderer changes the zoom level for a particular url, so the | 1800 // Sent when the renderer changes the zoom level for a particular url, so the |
1804 // browser can update its records. If remember is true, then url is used to | 1801 // browser can update its records. If remember is true, then url is used to |
1805 // update the zoom level for all pages in that site. Otherwise, the render | 1802 // update the zoom level for all pages in that site. Otherwise, the render |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2013 int /* automation_id */) | 2010 int /* automation_id */) |
2014 | 2011 |
2015 // Sent to the browser when the renderer detects it is blocked on a pepper | 2012 // Sent to the browser when the renderer detects it is blocked on a pepper |
2016 // plugin message for too long. This is also sent when it becomes unhung | 2013 // plugin message for too long. This is also sent when it becomes unhung |
2017 // (according to the value of is_hung). The browser can give the user the | 2014 // (according to the value of is_hung). The browser can give the user the |
2018 // option of killing the plugin. | 2015 // option of killing the plugin. |
2019 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2016 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
2020 int /* plugin_child_id */, | 2017 int /* plugin_child_id */, |
2021 FilePath /* path */, | 2018 FilePath /* path */, |
2022 bool /* is_hung */) | 2019 bool /* is_hung */) |
OLD | NEW |