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 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
635 IPC_STRUCT_MEMBER(int, pending_history_list_offset) | 635 IPC_STRUCT_MEMBER(int, pending_history_list_offset) |
636 | 636 |
637 // Informs the RenderView of where its current page contents reside in | 637 // Informs the RenderView of where its current page contents reside in |
638 // session history and the total size of the session history list. | 638 // session history and the total size of the session history list. |
639 IPC_STRUCT_MEMBER(int, current_history_list_offset) | 639 IPC_STRUCT_MEMBER(int, current_history_list_offset) |
640 IPC_STRUCT_MEMBER(int, current_history_list_length) | 640 IPC_STRUCT_MEMBER(int, current_history_list_length) |
641 | 641 |
642 // The URL to load. | 642 // The URL to load. |
643 IPC_STRUCT_MEMBER(GURL, url) | 643 IPC_STRUCT_MEMBER(GURL, url) |
644 | 644 |
| 645 // Base URL for use in WebKit's SubstituteData. |
| 646 // Is only used with data: URLs. |
| 647 IPC_STRUCT_MEMBER(GURL, base_url_for_data_url) |
| 648 |
| 649 // History URL for use in WebKit's SubstituteData. |
| 650 // Is only used with data: URLs. |
| 651 IPC_STRUCT_MEMBER(GURL, history_url_for_data_url) |
| 652 |
645 // The URL to send in the "Referer" header field. Can be empty if there is | 653 // The URL to send in the "Referer" header field. Can be empty if there is |
646 // no referrer. | 654 // no referrer. |
647 IPC_STRUCT_MEMBER(content::Referrer, referrer) | 655 IPC_STRUCT_MEMBER(content::Referrer, referrer) |
648 | 656 |
649 // The type of transition. | 657 // The type of transition. |
650 IPC_STRUCT_MEMBER(content::PageTransition, transition) | 658 IPC_STRUCT_MEMBER(content::PageTransition, transition) |
651 | 659 |
652 // Opaque history state (received by ViewHostMsg_UpdateState). | 660 // Opaque history state (received by ViewHostMsg_UpdateState). |
653 IPC_STRUCT_MEMBER(std::string, state) | 661 IPC_STRUCT_MEMBER(std::string, state) |
654 | 662 |
(...skipping 1506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2161 // (according to the value of is_hung). The browser can give the user the | 2169 // (according to the value of is_hung). The browser can give the user the |
2162 // option of killing the plugin. | 2170 // option of killing the plugin. |
2163 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2171 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
2164 int /* plugin_child_id */, | 2172 int /* plugin_child_id */, |
2165 FilePath /* path */, | 2173 FilePath /* path */, |
2166 bool /* is_hung */) | 2174 bool /* is_hung */) |
2167 | 2175 |
2168 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2176 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
2169 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2177 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
2170 int /* orientation */) | 2178 int /* orientation */) |
OLD | NEW |