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 <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 // when the pending entry situation is made sane and the browser keeps them | 227 // when the pending entry situation is made sane and the browser keeps them |
228 // around long enough to match them via nav_entry_id. | 228 // around long enough to match them via nav_entry_id. |
229 IPC_STRUCT_MEMBER(bool, intended_as_new_entry) | 229 IPC_STRUCT_MEMBER(bool, intended_as_new_entry) |
230 | 230 |
231 // Whether this commit created a new entry. | 231 // Whether this commit created a new entry. |
232 IPC_STRUCT_MEMBER(bool, did_create_new_entry) | 232 IPC_STRUCT_MEMBER(bool, did_create_new_entry) |
233 | 233 |
234 // Whether this commit should replace the current entry. | 234 // Whether this commit should replace the current entry. |
235 IPC_STRUCT_MEMBER(bool, should_replace_current_entry) | 235 IPC_STRUCT_MEMBER(bool, should_replace_current_entry) |
236 | 236 |
237 // Information regarding the security of the connection (empty if the | |
238 // connection was not secure). | |
239 IPC_STRUCT_MEMBER(std::string, security_info) | |
240 | |
241 // The gesture that initiated this navigation. | 237 // The gesture that initiated this navigation. |
242 IPC_STRUCT_MEMBER(content::NavigationGesture, gesture) | 238 IPC_STRUCT_MEMBER(content::NavigationGesture, gesture) |
243 | 239 |
244 // The HTTP method used by the navigation. | 240 // The HTTP method used by the navigation. |
245 IPC_STRUCT_MEMBER(std::string, method) | 241 IPC_STRUCT_MEMBER(std::string, method) |
246 | 242 |
247 // The POST body identifier. -1 if it doesn't exist. | 243 // The POST body identifier. -1 if it doesn't exist. |
248 IPC_STRUCT_MEMBER(int64_t, post_id) | 244 IPC_STRUCT_MEMBER(int64_t, post_id) |
249 | 245 |
250 // Whether the frame navigation resulted in no change to the documents within | 246 // Whether the frame navigation resulted in no change to the documents within |
(...skipping 1319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1570 // nearest find result in the sending frame. | 1566 // nearest find result in the sending frame. |
1571 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1567 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
1572 int /* nfr_request_id */, | 1568 int /* nfr_request_id */, |
1573 float /* distance */) | 1569 float /* distance */) |
1574 #endif | 1570 #endif |
1575 | 1571 |
1576 // Adding a new message? Stick to the sort order above: first platform | 1572 // Adding a new message? Stick to the sort order above: first platform |
1577 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1573 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1578 // platform independent FrameHostMsg, then ifdefs for platform specific | 1574 // platform independent FrameHostMsg, then ifdefs for platform specific |
1579 // FrameHostMsg. | 1575 // FrameHostMsg. |
OLD | NEW |