| 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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 // to a named anchor. | 248 // to a named anchor. |
| 249 IPC_STRUCT_MEMBER(bool, was_within_same_page) | 249 IPC_STRUCT_MEMBER(bool, was_within_same_page) |
| 250 | 250 |
| 251 // The status code of the HTTP request. | 251 // The status code of the HTTP request. |
| 252 IPC_STRUCT_MEMBER(int, http_status_code) | 252 IPC_STRUCT_MEMBER(int, http_status_code) |
| 253 | 253 |
| 254 // This flag is used to warn if the renderer is displaying an error page, | 254 // This flag is used to warn if the renderer is displaying an error page, |
| 255 // so that we can set the appropriate page type. | 255 // so that we can set the appropriate page type. |
| 256 IPC_STRUCT_MEMBER(bool, url_is_unreachable) | 256 IPC_STRUCT_MEMBER(bool, url_is_unreachable) |
| 257 | 257 |
| 258 // True if the connection was proxied. In this case, socket_address | |
| 259 // will represent the address of the proxy, rather than the remote host. | |
| 260 IPC_STRUCT_MEMBER(bool, was_fetched_via_proxy) | |
| 261 | |
| 262 // Serialized history item state to store in the navigation entry. | 258 // Serialized history item state to store in the navigation entry. |
| 263 IPC_STRUCT_MEMBER(content::PageState, page_state) | 259 IPC_STRUCT_MEMBER(content::PageState, page_state) |
| 264 | 260 |
| 265 // Original request's URL. | 261 // Original request's URL. |
| 266 IPC_STRUCT_MEMBER(GURL, original_request_url) | 262 IPC_STRUCT_MEMBER(GURL, original_request_url) |
| 267 | 263 |
| 268 // User agent override used to navigate. | 264 // User agent override used to navigate. |
| 269 IPC_STRUCT_MEMBER(bool, is_overriding_user_agent) | 265 IPC_STRUCT_MEMBER(bool, is_overriding_user_agent) |
| 270 | 266 |
| 271 // Notifies the browser that for this navigation, the session history was | 267 // Notifies the browser that for this navigation, the session history was |
| (...skipping 1296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1568 // nearest find result in the sending frame. | 1564 // nearest find result in the sending frame. |
| 1569 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1565 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1570 int /* nfr_request_id */, | 1566 int /* nfr_request_id */, |
| 1571 float /* distance */) | 1567 float /* distance */) |
| 1572 #endif | 1568 #endif |
| 1573 | 1569 |
| 1574 // Adding a new message? Stick to the sort order above: first platform | 1570 // Adding a new message? Stick to the sort order above: first platform |
| 1575 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1571 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1576 // platform independent FrameHostMsg, then ifdefs for platform specific | 1572 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1577 // FrameHostMsg. | 1573 // FrameHostMsg. |
| OLD | NEW |