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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 | 237 |
238 // The gesture that initiated this navigation. | 238 // The gesture that initiated this navigation. |
239 IPC_STRUCT_MEMBER(content::NavigationGesture, gesture) | 239 IPC_STRUCT_MEMBER(content::NavigationGesture, gesture) |
240 | 240 |
241 // The HTTP method used by the navigation. | 241 // The HTTP method used by the navigation. |
242 IPC_STRUCT_MEMBER(std::string, method) | 242 IPC_STRUCT_MEMBER(std::string, method) |
243 | 243 |
244 // The POST body identifier. -1 if it doesn't exist. | 244 // The POST body identifier. -1 if it doesn't exist. |
245 IPC_STRUCT_MEMBER(int64_t, post_id) | 245 IPC_STRUCT_MEMBER(int64_t, post_id) |
246 | 246 |
247 // Whether the frame navigation resulted in no change to the documents within | 247 // Whether the frame navigation resulted in no change of the document within |
248 // the page. For example, the navigation may have just resulted in scrolling | 248 // the frame. For example, the navigation may have just resulted in |
249 // to a named anchor. | 249 // scrolling to a named anchor. |
250 IPC_STRUCT_MEMBER(bool, was_within_same_page) | 250 IPC_STRUCT_MEMBER(bool, was_within_same_document) |
251 | 251 |
252 // The status code of the HTTP request. | 252 // The status code of the HTTP request. |
253 IPC_STRUCT_MEMBER(int, http_status_code) | 253 IPC_STRUCT_MEMBER(int, http_status_code) |
254 | 254 |
255 // This flag is used to warn if the renderer is displaying an error page, | 255 // This flag is used to warn if the renderer is displaying an error page, |
256 // so that we can set the appropriate page type. | 256 // so that we can set the appropriate page type. |
257 IPC_STRUCT_MEMBER(bool, url_is_unreachable) | 257 IPC_STRUCT_MEMBER(bool, url_is_unreachable) |
258 | 258 |
259 // Serialized history item state to store in the navigation entry. | 259 // Serialized history item state to store in the navigation entry. |
260 IPC_STRUCT_MEMBER(content::PageState, page_state) | 260 IPC_STRUCT_MEMBER(content::PageState, page_state) |
(...skipping 1358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1619 int /* nfr_request_id */, | 1619 int /* nfr_request_id */, |
1620 float /* distance */) | 1620 float /* distance */) |
1621 | 1621 |
1622 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) | 1622 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) |
1623 #endif | 1623 #endif |
1624 | 1624 |
1625 // Adding a new message? Stick to the sort order above: first platform | 1625 // Adding a new message? Stick to the sort order above: first platform |
1626 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1626 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1627 // platform independent FrameHostMsg, then ifdefs for platform specific | 1627 // platform independent FrameHostMsg, then ifdefs for platform specific |
1628 // FrameHostMsg. | 1628 // FrameHostMsg. |
OLD | NEW |