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