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 "content/common/content_export.h" | 8 #include "content/common/content_export.h" |
9 #include "content/common/content_param_traits.h" | 9 #include "content/common/content_param_traits.h" |
10 #include "content/common/frame_message_enums.h" | 10 #include "content/common/frame_message_enums.h" |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 IPC_STRUCT_MEMBER(base::string16, error_description) | 115 IPC_STRUCT_MEMBER(base::string16, error_description) |
116 // The URL that the error is reported for. | 116 // The URL that the error is reported for. |
117 IPC_STRUCT_MEMBER(GURL, url) | 117 IPC_STRUCT_MEMBER(GURL, url) |
118 // True if the failure is the result of navigating to a POST again | 118 // True if the failure is the result of navigating to a POST again |
119 // and we're going to show the POST interstitial. | 119 // and we're going to show the POST interstitial. |
120 IPC_STRUCT_MEMBER(bool, showing_repost_interstitial) | 120 IPC_STRUCT_MEMBER(bool, showing_repost_interstitial) |
121 IPC_STRUCT_END() | 121 IPC_STRUCT_END() |
122 | 122 |
123 IPC_STRUCT_TRAITS_BEGIN(content::FrameNavigateParams) | 123 IPC_STRUCT_TRAITS_BEGIN(content::FrameNavigateParams) |
124 IPC_STRUCT_TRAITS_MEMBER(page_id) | 124 IPC_STRUCT_TRAITS_MEMBER(page_id) |
| 125 IPC_STRUCT_TRAITS_MEMBER(item_sequence_number) |
| 126 IPC_STRUCT_TRAITS_MEMBER(document_sequence_number) |
125 IPC_STRUCT_TRAITS_MEMBER(url) | 127 IPC_STRUCT_TRAITS_MEMBER(url) |
126 IPC_STRUCT_TRAITS_MEMBER(base_url) | 128 IPC_STRUCT_TRAITS_MEMBER(base_url) |
127 IPC_STRUCT_TRAITS_MEMBER(referrer) | 129 IPC_STRUCT_TRAITS_MEMBER(referrer) |
128 IPC_STRUCT_TRAITS_MEMBER(transition) | 130 IPC_STRUCT_TRAITS_MEMBER(transition) |
129 IPC_STRUCT_TRAITS_MEMBER(redirects) | 131 IPC_STRUCT_TRAITS_MEMBER(redirects) |
130 IPC_STRUCT_TRAITS_MEMBER(should_update_history) | 132 IPC_STRUCT_TRAITS_MEMBER(should_update_history) |
131 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url) | 133 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url) |
132 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) | 134 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) |
133 IPC_STRUCT_TRAITS_MEMBER(contents_mime_type) | 135 IPC_STRUCT_TRAITS_MEMBER(contents_mime_type) |
134 IPC_STRUCT_TRAITS_MEMBER(socket_address) | 136 IPC_STRUCT_TRAITS_MEMBER(socket_address) |
(...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
838 IPC_MESSAGE_ROUTED0(FrameHostMsg_DispatchLoad) | 840 IPC_MESSAGE_ROUTED0(FrameHostMsg_DispatchLoad) |
839 | 841 |
840 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 842 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
841 | 843 |
842 // Message to show/hide a popup menu using native controls. | 844 // Message to show/hide a popup menu using native controls. |
843 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 845 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
844 FrameHostMsg_ShowPopup_Params) | 846 FrameHostMsg_ShowPopup_Params) |
845 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 847 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
846 | 848 |
847 #endif | 849 #endif |
OLD | NEW |