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 599 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
610 IPC_STRUCT_MEMBER(int, pending_history_list_offset) | 610 IPC_STRUCT_MEMBER(int, pending_history_list_offset) |
611 | 611 |
612 // Informs the RenderView of where its current page contents reside in | 612 // Informs the RenderView of where its current page contents reside in |
613 // session history and the total size of the session history list. | 613 // session history and the total size of the session history list. |
614 IPC_STRUCT_MEMBER(int, current_history_list_offset) | 614 IPC_STRUCT_MEMBER(int, current_history_list_offset) |
615 IPC_STRUCT_MEMBER(int, current_history_list_length) | 615 IPC_STRUCT_MEMBER(int, current_history_list_length) |
616 | 616 |
617 // The URL to load. | 617 // The URL to load. |
618 IPC_STRUCT_MEMBER(GURL, url) | 618 IPC_STRUCT_MEMBER(GURL, url) |
619 | 619 |
| 620 // Base URL for using in WebKit's SubstituteData. |
| 621 IPC_STRUCT_MEMBER(GURL, base_url) |
| 622 |
| 623 // History URL for using in WebKit's SubstituteData. |
| 624 IPC_STRUCT_MEMBER(GURL, history_url) |
| 625 |
620 // The URL to send in the "Referer" header field. Can be empty if there is | 626 // The URL to send in the "Referer" header field. Can be empty if there is |
621 // no referrer. | 627 // no referrer. |
622 IPC_STRUCT_MEMBER(content::Referrer, referrer) | 628 IPC_STRUCT_MEMBER(content::Referrer, referrer) |
623 | 629 |
624 // The type of transition. | 630 // The type of transition. |
625 IPC_STRUCT_MEMBER(content::PageTransition, transition) | 631 IPC_STRUCT_MEMBER(content::PageTransition, transition) |
626 | 632 |
627 // Opaque history state (received by ViewHostMsg_UpdateState). | 633 // Opaque history state (received by ViewHostMsg_UpdateState). |
628 IPC_STRUCT_MEMBER(std::string, state) | 634 IPC_STRUCT_MEMBER(std::string, state) |
629 | 635 |
(...skipping 1474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2104 // (according to the value of is_hung). The browser can give the user the | 2110 // (according to the value of is_hung). The browser can give the user the |
2105 // option of killing the plugin. | 2111 // option of killing the plugin. |
2106 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2112 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
2107 int /* plugin_child_id */, | 2113 int /* plugin_child_id */, |
2108 FilePath /* path */, | 2114 FilePath /* path */, |
2109 bool /* is_hung */) | 2115 bool /* is_hung */) |
2110 | 2116 |
2111 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2117 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
2112 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2118 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
2113 int /* orientation */) | 2119 int /* orientation */) |
OLD | NEW |