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 "content/common/content_param_traits.h" | 9 #include "content/common/content_param_traits.h" |
10 #include "content/common/frame_message_enums.h" | 10 #include "content/common/frame_message_enums.h" |
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
423 std::string /* frame_name */, | 423 std::string /* frame_name */, |
424 int32 /* new_routing_id */) | 424 int32 /* new_routing_id */) |
425 | 425 |
426 // Sent by the renderer to the parent RenderFrameHost when a child frame is | 426 // Sent by the renderer to the parent RenderFrameHost when a child frame is |
427 // detached from the DOM. | 427 // detached from the DOM. |
428 IPC_MESSAGE_ROUTED0(FrameHostMsg_Detach) | 428 IPC_MESSAGE_ROUTED0(FrameHostMsg_Detach) |
429 | 429 |
430 // Sent by the renderer when the frame becomes focused. | 430 // Sent by the renderer when the frame becomes focused. |
431 IPC_MESSAGE_ROUTED0(FrameHostMsg_FrameFocused) | 431 IPC_MESSAGE_ROUTED0(FrameHostMsg_FrameFocused) |
432 | 432 |
433 // Sent when the renderer starts a provisional load for a frame. | 433 // Sent when the renderer starts a provisional load for a frame. |
Charlie Reis
2014/07/30 00:00:51
Please document the |is_transition_navigation| mem
oystein (OOO til 10th of July)
2014/07/30 17:30:45
Done.
| |
434 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidStartProvisionalLoadForFrame, | 434 IPC_MESSAGE_ROUTED2(FrameHostMsg_DidStartProvisionalLoadForFrame, |
435 GURL /* url */) | 435 GURL /* url */, |
436 bool /* is_transition_navigation */) | |
436 | 437 |
437 // Sent when the renderer fails a provisional load with an error. | 438 // Sent when the renderer fails a provisional load with an error. |
438 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidFailProvisionalLoadWithError, | 439 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidFailProvisionalLoadWithError, |
439 FrameHostMsg_DidFailProvisionalLoadWithError_Params) | 440 FrameHostMsg_DidFailProvisionalLoadWithError_Params) |
440 | 441 |
441 // Sent when a provisional load on the main frame redirects. | 442 // Sent when a provisional load on the main frame redirects. |
442 IPC_MESSAGE_ROUTED3(FrameHostMsg_DidRedirectProvisionalLoad, | 443 IPC_MESSAGE_ROUTED3(FrameHostMsg_DidRedirectProvisionalLoad, |
443 int /* page_id */, | 444 int /* page_id */, |
444 GURL /* source_url*/, | 445 GURL /* source_url*/, |
445 GURL /* target_url */) | 446 GURL /* target_url */) |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
674 int /* render_frame_id */, | 675 int /* render_frame_id */, |
675 bool /* is_transition */) | 676 bool /* is_transition */) |
676 | 677 |
677 // Tells the browser to perform a navigation. | 678 // Tells the browser to perform a navigation. |
678 IPC_MESSAGE_ROUTED1(FrameHostMsg_BeginNavigation, | 679 IPC_MESSAGE_ROUTED1(FrameHostMsg_BeginNavigation, |
679 FrameHostMsg_BeginNavigation_Params) | 680 FrameHostMsg_BeginNavigation_Params) |
680 | 681 |
681 // Sent once a paint happens after the first non empty layout. In other words | 682 // Sent once a paint happens after the first non empty layout. In other words |
682 // after the frame has painted something. | 683 // after the frame has painted something. |
683 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) | 684 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) |
OLD | NEW |