OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // This header is meant to be included in multiple passes, hence no traditional | 5 // This header is meant to be included in multiple passes, hence no traditional |
6 // header guard. | 6 // header guard. |
7 // See ipc_message_macros.h for explanation of the macros and passes. | 7 // See ipc_message_macros.h for explanation of the macros and passes. |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 1046 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1057 | 1057 |
1058 // Sent when the renderer is done loading a page. This corresponds to WebKit's | 1058 // Sent when the renderer is done loading a page. This corresponds to WebKit's |
1059 // noption of the throbber stopping. | 1059 // noption of the throbber stopping. |
1060 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidStopLoading) | 1060 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidStopLoading) |
1061 | 1061 |
1062 // Sent when the document element is available for the toplevel frame. This | 1062 // Sent when the document element is available for the toplevel frame. This |
1063 // happens after the page starts loading, but before all resources are | 1063 // happens after the page starts loading, but before all resources are |
1064 // finished. | 1064 // finished. |
1065 IPC_MESSAGE_ROUTED0(ViewHostMsg_DocumentAvailableInMainFrame) | 1065 IPC_MESSAGE_ROUTED0(ViewHostMsg_DocumentAvailableInMainFrame) |
1066 | 1066 |
| 1067 // Sent when after the onload handler has been invoked for the document |
| 1068 // in the toplevel frame. |
| 1069 IPC_MESSAGE_ROUTED0(ViewHostMsg_DocumentOnLoadCompletedInMainFrame) |
| 1070 |
1067 // Sent when the renderer loads a resource from its memory cache. | 1071 // Sent when the renderer loads a resource from its memory cache. |
1068 // The security info is non empty if the resource was originally loaded over | 1072 // The security info is non empty if the resource was originally loaded over |
1069 // a secure connection. | 1073 // a secure connection. |
1070 // Note: May only be sent once per URL per frame per committed load. | 1074 // Note: May only be sent once per URL per frame per committed load. |
1071 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidLoadResourceFromMemoryCache, | 1075 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidLoadResourceFromMemoryCache, |
1072 GURL /* url */, | 1076 GURL /* url */, |
1073 std::string /* frame_origin */, | 1077 std::string /* frame_origin */, |
1074 std::string /* main_frame_origin */, | 1078 std::string /* main_frame_origin */, |
1075 std::string /* security info */) | 1079 std::string /* security info */) |
1076 | 1080 |
(...skipping 1249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2326 int /* render_view_id */, | 2330 int /* render_view_id */, |
2327 int /* bridge_id */) | 2331 int /* bridge_id */) |
2328 | 2332 |
2329 // The |render_view_id| and |bridge_id| requests Geolocation service to | 2333 // The |render_view_id| and |bridge_id| requests Geolocation service to |
2330 // resume. | 2334 // resume. |
2331 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, | 2335 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, |
2332 int /* render_view_id */, | 2336 int /* render_view_id */, |
2333 int /* bridge_id */) | 2337 int /* bridge_id */) |
2334 | 2338 |
2335 IPC_END_MESSAGES(ViewHost) | 2339 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |