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 "content/common/content_export.h" | 8 #include "content/common/content_export.h" |
9 #include "ipc/ipc_message_macros.h" | 9 #include "ipc/ipc_message_macros.h" |
10 | 10 |
(...skipping 24 matching lines...) Expand all Loading... |
35 int64 /* parent_frame_id */, | 35 int64 /* parent_frame_id */, |
36 int64 /* frame_id */) | 36 int64 /* frame_id */) |
37 | 37 |
38 // Sent when the renderer starts a provisional load for a frame. | 38 // Sent when the renderer starts a provisional load for a frame. |
39 IPC_MESSAGE_ROUTED4(FrameHostMsg_DidStartProvisionalLoadForFrame, | 39 IPC_MESSAGE_ROUTED4(FrameHostMsg_DidStartProvisionalLoadForFrame, |
40 int64 /* frame_id */, | 40 int64 /* frame_id */, |
41 int64 /* parent_frame_id */, | 41 int64 /* parent_frame_id */, |
42 bool /* true if it is the main frame */, | 42 bool /* true if it is the main frame */, |
43 GURL /* url */) | 43 GURL /* url */) |
44 | 44 |
| 45 // Indicates that the current renderer has swapped out, after a SwapOut |
| 46 // message. |
| 47 IPC_MESSAGE_ROUTED0(FrameHostMsg_SwapOut_ACK) |
| 48 |
| 49 // Instructs the renderer to swap out for a cross-site transition, including |
| 50 // running the unload event handler. Expects a SwapOut_ACK message when |
| 51 // finished. |
| 52 IPC_MESSAGE_ROUTED0(FrameMsg_SwapOut) |
OLD | NEW |