OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 page rendering. | 5 // IPC messages for page rendering. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include "base/process.h" | 8 #include "base/process.h" |
9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
447 // The status code of the HTTP request. | 447 // The status code of the HTTP request. |
448 IPC_STRUCT_MEMBER(int, http_status_code) | 448 IPC_STRUCT_MEMBER(int, http_status_code) |
449 | 449 |
450 // True if the connection was proxied. In this case, socket_address | 450 // True if the connection was proxied. In this case, socket_address |
451 // will represent the address of the proxy, rather than the remote host. | 451 // will represent the address of the proxy, rather than the remote host. |
452 IPC_STRUCT_MEMBER(bool, was_fetched_via_proxy) | 452 IPC_STRUCT_MEMBER(bool, was_fetched_via_proxy) |
453 | 453 |
454 // Serialized history item state to store in the navigation entry. | 454 // Serialized history item state to store in the navigation entry. |
455 IPC_STRUCT_MEMBER(std::string, content_state) | 455 IPC_STRUCT_MEMBER(std::string, content_state) |
456 | 456 |
| 457 // Original request's URL. |
| 458 IPC_STRUCT_MEMBER(GURL, original_request_url) |
| 459 |
457 // User agent override used to navigate. | 460 // User agent override used to navigate. |
458 IPC_STRUCT_MEMBER(bool, is_overriding_user_agent) | 461 IPC_STRUCT_MEMBER(bool, is_overriding_user_agent) |
459 IPC_STRUCT_END() | 462 IPC_STRUCT_END() |
460 | 463 |
461 // This message is used for supporting popup menus on Mac OS X using native | 464 // This message is used for supporting popup menus on Mac OS X using native |
462 // Cocoa controls. The renderer sends us this message which we use to populate | 465 // Cocoa controls. The renderer sends us this message which we use to populate |
463 // the popup menu. | 466 // the popup menu. |
464 IPC_STRUCT_BEGIN(ViewHostMsg_ShowPopup_Params) | 467 IPC_STRUCT_BEGIN(ViewHostMsg_ShowPopup_Params) |
465 // Position on the screen. | 468 // Position on the screen. |
466 IPC_STRUCT_MEMBER(gfx::Rect, bounds) | 469 IPC_STRUCT_MEMBER(gfx::Rect, bounds) |
(...skipping 1656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2123 // (according to the value of is_hung). The browser can give the user the | 2126 // (according to the value of is_hung). The browser can give the user the |
2124 // option of killing the plugin. | 2127 // option of killing the plugin. |
2125 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2128 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
2126 int /* plugin_child_id */, | 2129 int /* plugin_child_id */, |
2127 FilePath /* path */, | 2130 FilePath /* path */, |
2128 bool /* is_hung */) | 2131 bool /* is_hung */) |
2129 | 2132 |
2130 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2133 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
2131 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2134 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
2132 int /* orientation */) | 2135 int /* orientation */) |
OLD | NEW |