| 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 670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 681 int /* render_frame_id */, | 681 int /* render_frame_id */, |
| 682 bool /* is_transition */) | 682 bool /* is_transition */) |
| 683 | 683 |
| 684 // Tells the browser to perform a navigation. | 684 // Tells the browser to perform a navigation. |
| 685 IPC_MESSAGE_ROUTED1(FrameHostMsg_BeginNavigation, | 685 IPC_MESSAGE_ROUTED1(FrameHostMsg_BeginNavigation, |
| 686 FrameHostMsg_BeginNavigation_Params) | 686 FrameHostMsg_BeginNavigation_Params) |
| 687 | 687 |
| 688 // Sent once a paint happens after the first non empty layout. In other words | 688 // Sent once a paint happens after the first non empty layout. In other words |
| 689 // after the frame has painted something. | 689 // after the frame has painted something. |
| 690 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) | 690 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) |
| 691 |
| 692 // Sent when a WebUI page that uses Mojo has executed its 'main' module. Our |
| 693 // javascript based testing framework must wait until this has happened. |
| 694 IPC_MESSAGE_ROUTED0(FrameHostMsg_WebUIMojoMainRan) |
| OLD | NEW |