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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 | 144 |
145 // Original request's URL. | 145 // Original request's URL. |
146 IPC_STRUCT_MEMBER(GURL, original_request_url) | 146 IPC_STRUCT_MEMBER(GURL, original_request_url) |
147 | 147 |
148 // User agent override used to navigate. | 148 // User agent override used to navigate. |
149 IPC_STRUCT_MEMBER(bool, is_overriding_user_agent) | 149 IPC_STRUCT_MEMBER(bool, is_overriding_user_agent) |
150 | 150 |
151 // Notifies the browser that for this navigation, the session history was | 151 // Notifies the browser that for this navigation, the session history was |
152 // successfully cleared. | 152 // successfully cleared. |
153 IPC_STRUCT_MEMBER(bool, history_list_was_cleared) | 153 IPC_STRUCT_MEMBER(bool, history_list_was_cleared) |
| 154 |
| 155 // The routing_id of the render view associated with the navigation. |
| 156 // We need to track the RenderViewHost routing_id because of downstream |
| 157 // dependencies (crbug.com/392171 DownloadRequestHandle, SaveFileManager, |
| 158 // ResourceDispatcherHostImpl, MediaStreamUIProxy, |
| 159 // SpeechRecognitionDispatcherHost and possibly others). They look up the view |
| 160 // based on the ID stored in the resource requests. Once those dependencies |
| 161 // are unwound or moved to RenderFrameHost (crbug.com/304341) we can move the |
| 162 // client to be based on the routing_id of the RenderFrameHost. |
| 163 IPC_STRUCT_MEMBER(int, render_view_routing_id) |
154 IPC_STRUCT_END() | 164 IPC_STRUCT_END() |
155 | 165 |
156 IPC_STRUCT_BEGIN(FrameMsg_Navigate_Params) | 166 IPC_STRUCT_BEGIN(FrameMsg_Navigate_Params) |
157 // The page_id for this navigation, or -1 if it is a new navigation. Back, | 167 // The page_id for this navigation, or -1 if it is a new navigation. Back, |
158 // Forward, and Reload navigations should have a valid page_id. If the load | 168 // Forward, and Reload navigations should have a valid page_id. If the load |
159 // succeeds, then this page_id will be reflected in the resultant | 169 // succeeds, then this page_id will be reflected in the resultant |
160 // FrameHostMsg_DidCommitProvisionalLoad message. | 170 // FrameHostMsg_DidCommitProvisionalLoad message. |
161 IPC_STRUCT_MEMBER(int32, page_id) | 171 IPC_STRUCT_MEMBER(int32, page_id) |
162 | 172 |
163 // If page_id is -1, then pending_history_list_offset will also be -1. | 173 // If page_id is -1, then pending_history_list_offset will also be -1. |
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
608 // |endOffset| are the offsets of the selection in the returned |content|. | 618 // |endOffset| are the offsets of the selection in the returned |content|. |
609 IPC_MESSAGE_ROUTED3(FrameHostMsg_TextSurroundingSelectionResponse, | 619 IPC_MESSAGE_ROUTED3(FrameHostMsg_TextSurroundingSelectionResponse, |
610 base::string16, /* content */ | 620 base::string16, /* content */ |
611 size_t, /* startOffset */ | 621 size_t, /* startOffset */ |
612 size_t /* endOffset */) | 622 size_t /* endOffset */) |
613 | 623 |
614 // Notifies the browser that the renderer has a pending navigation transition. | 624 // Notifies the browser that the renderer has a pending navigation transition. |
615 IPC_MESSAGE_CONTROL2(FrameHostMsg_SetHasPendingTransitionRequest, | 625 IPC_MESSAGE_CONTROL2(FrameHostMsg_SetHasPendingTransitionRequest, |
616 int /* render_frame_id */, | 626 int /* render_frame_id */, |
617 bool /* is_transition */) | 627 bool /* is_transition */) |
OLD | NEW |