| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 interacting with frames. | 5 // IPC messages for interacting with frames. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 1069 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1080 IPC_MESSAGE_ROUTED1(FrameHostMsg_UpdateToUniqueOrigin, | 1080 IPC_MESSAGE_ROUTED1(FrameHostMsg_UpdateToUniqueOrigin, |
| 1081 bool /* is potentially trustworthy unique origin */) | 1081 bool /* is potentially trustworthy unique origin */) |
| 1082 | 1082 |
| 1083 // Sent when the renderer changed the progress of a load. | 1083 // Sent when the renderer changed the progress of a load. |
| 1084 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidChangeLoadProgress, | 1084 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidChangeLoadProgress, |
| 1085 double /* load_progress */) | 1085 double /* load_progress */) |
| 1086 | 1086 |
| 1087 // Requests that the given URL be opened in the specified manner. | 1087 // Requests that the given URL be opened in the specified manner. |
| 1088 IPC_MESSAGE_ROUTED1(FrameHostMsg_OpenURL, FrameHostMsg_OpenURL_Params) | 1088 IPC_MESSAGE_ROUTED1(FrameHostMsg_OpenURL, FrameHostMsg_OpenURL_Params) |
| 1089 | 1089 |
| 1090 // If a cross-process navigation was started for the initial history load in |
| 1091 // this subframe, this tries to cancel it to allow a client redirect to happen |
| 1092 // instead. |
| 1093 IPC_MESSAGE_ROUTED0(FrameHostMsg_CancelInitialHistoryLoad) |
| 1094 |
| 1090 // Notifies the browser that a frame finished loading. | 1095 // Notifies the browser that a frame finished loading. |
| 1091 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidFinishLoad, | 1096 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidFinishLoad, |
| 1092 GURL /* validated_url */) | 1097 GURL /* validated_url */) |
| 1093 | 1098 |
| 1094 // Initiates a download based on user actions like 'ALT+click'. | 1099 // Initiates a download based on user actions like 'ALT+click'. |
| 1095 IPC_MESSAGE_CONTROL5(FrameHostMsg_DownloadUrl, | 1100 IPC_MESSAGE_CONTROL5(FrameHostMsg_DownloadUrl, |
| 1096 int /* render_view_id */, | 1101 int /* render_view_id */, |
| 1097 int /* render_frame_id */, | 1102 int /* render_frame_id */, |
| 1098 GURL /* url */, | 1103 GURL /* url */, |
| 1099 content::Referrer /* referrer */, | 1104 content::Referrer /* referrer */, |
| (...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1564 // nearest find result in the sending frame. | 1569 // nearest find result in the sending frame. |
| 1565 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1570 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1566 int /* nfr_request_id */, | 1571 int /* nfr_request_id */, |
| 1567 float /* distance */) | 1572 float /* distance */) |
| 1568 #endif | 1573 #endif |
| 1569 | 1574 |
| 1570 // Adding a new message? Stick to the sort order above: first platform | 1575 // Adding a new message? Stick to the sort order above: first platform |
| 1571 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1576 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1572 // platform independent FrameHostMsg, then ifdefs for platform specific | 1577 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1573 // FrameHostMsg. | 1578 // FrameHostMsg. |
| OLD | NEW |