| 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 1840 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1851 string16 /* in - alert message */, | 1851 string16 /* in - alert message */, |
| 1852 bool /* in - is a reload */, | 1852 bool /* in - is a reload */, |
| 1853 bool /* out - success */, | 1853 bool /* out - success */, |
| 1854 string16 /* out - This is ignored.*/) | 1854 string16 /* out - This is ignored.*/) |
| 1855 | 1855 |
| 1856 // Sent when the renderer process is done processing a DataReceived | 1856 // Sent when the renderer process is done processing a DataReceived |
| 1857 // message. | 1857 // message. |
| 1858 IPC_MESSAGE_ROUTED1(ViewHostMsg_DataReceived_ACK, | 1858 IPC_MESSAGE_ROUTED1(ViewHostMsg_DataReceived_ACK, |
| 1859 int /* request_id */) | 1859 int /* request_id */) |
| 1860 | 1860 |
| 1861 // Sent when a provisional load on the main frame redirects. | |
| 1862 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidRedirectProvisionalLoad, | |
| 1863 int /* page_id */, | |
| 1864 GURL /* opener url if present, else empty */, | |
| 1865 GURL /* last url */, | |
| 1866 GURL /* url redirected to */) | |
| 1867 | |
| 1868 // Sent when the renderer changes the zoom level for a particular url, so the | 1861 // Sent when the renderer changes the zoom level for a particular url, so the |
| 1869 // browser can update its records. If remember is true, then url is used to | 1862 // browser can update its records. If remember is true, then url is used to |
| 1870 // update the zoom level for all pages in that site. Otherwise, the render | 1863 // update the zoom level for all pages in that site. Otherwise, the render |
| 1871 // view's id is used so that only the menu is updated. | 1864 // view's id is used so that only the menu is updated. |
| 1872 IPC_MESSAGE_ROUTED3(ViewHostMsg_DidZoomURL, | 1865 IPC_MESSAGE_ROUTED3(ViewHostMsg_DidZoomURL, |
| 1873 double /* zoom_level */, | 1866 double /* zoom_level */, |
| 1874 bool /* remember */, | 1867 bool /* remember */, |
| 1875 GURL /* url */) | 1868 GURL /* url */) |
| 1876 | 1869 |
| 1877 // Updates the minimum/maximum allowed zoom percent for this tab from the | 1870 // Updates the minimum/maximum allowed zoom percent for this tab from the |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2083 // (according to the value of is_hung). The browser can give the user the | 2076 // (according to the value of is_hung). The browser can give the user the |
| 2084 // option of killing the plugin. | 2077 // option of killing the plugin. |
| 2085 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2078 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
| 2086 int /* plugin_child_id */, | 2079 int /* plugin_child_id */, |
| 2087 FilePath /* path */, | 2080 FilePath /* path */, |
| 2088 bool /* is_hung */) | 2081 bool /* is_hung */) |
| 2089 | 2082 |
| 2090 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2083 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
| 2091 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2084 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
| 2092 int /* orientation */) | 2085 int /* orientation */) |
| OLD | NEW |