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 1813 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1824 string16 /* in - alert message */, | 1824 string16 /* in - alert message */, |
1825 bool /* in - is a reload */, | 1825 bool /* in - is a reload */, |
1826 bool /* out - success */, | 1826 bool /* out - success */, |
1827 string16 /* out - This is ignored.*/) | 1827 string16 /* out - This is ignored.*/) |
1828 | 1828 |
1829 // Sent when the renderer process is done processing a DataReceived | 1829 // Sent when the renderer process is done processing a DataReceived |
1830 // message. | 1830 // message. |
1831 IPC_MESSAGE_ROUTED1(ViewHostMsg_DataReceived_ACK, | 1831 IPC_MESSAGE_ROUTED1(ViewHostMsg_DataReceived_ACK, |
1832 int /* request_id */) | 1832 int /* request_id */) |
1833 | 1833 |
1834 IPC_MESSAGE_CONTROL1(ViewHostMsg_RevealFolderInOS, | |
1835 FilePath /* path */) | |
1836 | |
1837 // Sent when a provisional load on the main frame redirects. | 1834 // Sent when a provisional load on the main frame redirects. |
1838 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidRedirectProvisionalLoad, | 1835 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidRedirectProvisionalLoad, |
1839 int /* page_id */, | 1836 int /* page_id */, |
1840 GURL /* opener url if present, else empty */, | 1837 GURL /* opener url if present, else empty */, |
1841 GURL /* last url */, | 1838 GURL /* last url */, |
1842 GURL /* url redirected to */) | 1839 GURL /* url redirected to */) |
1843 | 1840 |
1844 // Sent when the renderer changes the zoom level for a particular url, so the | 1841 // Sent when the renderer changes the zoom level for a particular url, so the |
1845 // browser can update its records. If remember is true, then url is used to | 1842 // browser can update its records. If remember is true, then url is used to |
1846 // update the zoom level for all pages in that site. Otherwise, the render | 1843 // update the zoom level for all pages in that site. Otherwise, the render |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2059 // (according to the value of is_hung). The browser can give the user the | 2056 // (according to the value of is_hung). The browser can give the user the |
2060 // option of killing the plugin. | 2057 // option of killing the plugin. |
2061 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2058 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
2062 int /* plugin_child_id */, | 2059 int /* plugin_child_id */, |
2063 FilePath /* path */, | 2060 FilePath /* path */, |
2064 bool /* is_hung */) | 2061 bool /* is_hung */) |
2065 | 2062 |
2066 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2063 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
2067 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2064 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
2068 int /* orientation */) | 2065 int /* orientation */) |
OLD | NEW |