| 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 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 626 // |endOffset| are the offsets of the selection in the returned |content|. | 626 // |endOffset| are the offsets of the selection in the returned |content|. |
| 627 IPC_MESSAGE_ROUTED3(FrameHostMsg_TextSurroundingSelectionResponse, | 627 IPC_MESSAGE_ROUTED3(FrameHostMsg_TextSurroundingSelectionResponse, |
| 628 base::string16, /* content */ | 628 base::string16, /* content */ |
| 629 size_t, /* startOffset */ | 629 size_t, /* startOffset */ |
| 630 size_t /* endOffset */) | 630 size_t /* endOffset */) |
| 631 | 631 |
| 632 // Notifies the browser that the renderer has a pending navigation transition. | 632 // Notifies the browser that the renderer has a pending navigation transition. |
| 633 IPC_MESSAGE_CONTROL2(FrameHostMsg_SetHasPendingTransitionRequest, | 633 IPC_MESSAGE_CONTROL2(FrameHostMsg_SetHasPendingTransitionRequest, |
| 634 int /* render_frame_id */, | 634 int /* render_frame_id */, |
| 635 bool /* is_transition */) | 635 bool /* is_transition */) |
| 636 |
| 637 // Sent once a paint happens after the first non empty layout. In other words |
| 638 // after the frame has painted something. |
| 639 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) |
| OLD | NEW |