| 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 1848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1859 string16 /* in - alert message */, | 1859 string16 /* in - alert message */, |
| 1860 bool /* in - is a reload */, | 1860 bool /* in - is a reload */, |
| 1861 bool /* out - success */, | 1861 bool /* out - success */, |
| 1862 string16 /* out - This is ignored.*/) | 1862 string16 /* out - This is ignored.*/) |
| 1863 | 1863 |
| 1864 // Sent when the renderer process is done processing a DataReceived | 1864 // Sent when the renderer process is done processing a DataReceived |
| 1865 // message. | 1865 // message. |
| 1866 IPC_MESSAGE_ROUTED1(ViewHostMsg_DataReceived_ACK, | 1866 IPC_MESSAGE_ROUTED1(ViewHostMsg_DataReceived_ACK, |
| 1867 int /* request_id */) | 1867 int /* request_id */) |
| 1868 | 1868 |
| 1869 // Sent when a provisional load on the main frame redirects. | |
| 1870 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidRedirectProvisionalLoad, | |
| 1871 int /* page_id */, | |
| 1872 GURL /* opener url if present, else empty */, | |
| 1873 GURL /* last url */, | |
| 1874 GURL /* url redirected to */) | |
| 1875 | |
| 1876 // Sent when the renderer changes the zoom level for a particular url, so the | 1869 // Sent when the renderer changes the zoom level for a particular url, so the |
| 1877 // browser can update its records. If remember is true, then url is used to | 1870 // browser can update its records. If remember is true, then url is used to |
| 1878 // update the zoom level for all pages in that site. Otherwise, the render | 1871 // update the zoom level for all pages in that site. Otherwise, the render |
| 1879 // view's id is used so that only the menu is updated. | 1872 // view's id is used so that only the menu is updated. |
| 1880 IPC_MESSAGE_ROUTED3(ViewHostMsg_DidZoomURL, | 1873 IPC_MESSAGE_ROUTED3(ViewHostMsg_DidZoomURL, |
| 1881 double /* zoom_level */, | 1874 double /* zoom_level */, |
| 1882 bool /* remember */, | 1875 bool /* remember */, |
| 1883 GURL /* url */) | 1876 GURL /* url */) |
| 1884 | 1877 |
| 1885 // Updates the minimum/maximum allowed zoom percent for this tab from the | 1878 // Updates the minimum/maximum allowed zoom percent for this tab from the |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2097 // (according to the value of is_hung). The browser can give the user the | 2090 // (according to the value of is_hung). The browser can give the user the |
| 2098 // option of killing the plugin. | 2091 // option of killing the plugin. |
| 2099 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2092 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
| 2100 int /* plugin_child_id */, | 2093 int /* plugin_child_id */, |
| 2101 FilePath /* path */, | 2094 FilePath /* path */, |
| 2102 bool /* is_hung */) | 2095 bool /* is_hung */) |
| 2103 | 2096 |
| 2104 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2097 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
| 2105 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2098 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
| 2106 int /* orientation */) | 2099 int /* orientation */) |
| OLD | NEW |