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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 // string if we were unable to find a meaningful description. | 94 // string if we were unable to find a meaningful description. |
95 IPC_STRUCT_MEMBER(base::string16, error_description) | 95 IPC_STRUCT_MEMBER(base::string16, error_description) |
96 // The URL that the error is reported for. | 96 // The URL that the error is reported for. |
97 IPC_STRUCT_MEMBER(GURL, url) | 97 IPC_STRUCT_MEMBER(GURL, url) |
98 // True if the failure is the result of navigating to a POST again | 98 // True if the failure is the result of navigating to a POST again |
99 // and we're going to show the POST interstitial. | 99 // and we're going to show the POST interstitial. |
100 IPC_STRUCT_MEMBER(bool, showing_repost_interstitial) | 100 IPC_STRUCT_MEMBER(bool, showing_repost_interstitial) |
101 IPC_STRUCT_END() | 101 IPC_STRUCT_END() |
102 | 102 |
103 IPC_STRUCT_TRAITS_BEGIN(content::FrameNavigateParams) | 103 IPC_STRUCT_TRAITS_BEGIN(content::FrameNavigateParams) |
104 IPC_STRUCT_TRAITS_MEMBER(page_id) | |
105 IPC_STRUCT_TRAITS_MEMBER(url) | 104 IPC_STRUCT_TRAITS_MEMBER(url) |
106 IPC_STRUCT_TRAITS_MEMBER(base_url) | 105 IPC_STRUCT_TRAITS_MEMBER(base_url) |
107 IPC_STRUCT_TRAITS_MEMBER(referrer) | 106 IPC_STRUCT_TRAITS_MEMBER(referrer) |
108 IPC_STRUCT_TRAITS_MEMBER(transition) | 107 IPC_STRUCT_TRAITS_MEMBER(transition) |
109 IPC_STRUCT_TRAITS_MEMBER(redirects) | 108 IPC_STRUCT_TRAITS_MEMBER(redirects) |
110 IPC_STRUCT_TRAITS_MEMBER(should_update_history) | 109 IPC_STRUCT_TRAITS_MEMBER(should_update_history) |
111 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url) | 110 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url) |
112 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) | 111 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) |
113 IPC_STRUCT_TRAITS_MEMBER(contents_mime_type) | 112 IPC_STRUCT_TRAITS_MEMBER(contents_mime_type) |
114 IPC_STRUCT_TRAITS_MEMBER(socket_address) | 113 IPC_STRUCT_TRAITS_MEMBER(socket_address) |
(...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
773 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) | 772 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) |
774 | 773 |
775 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 774 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
776 | 775 |
777 // Message to show/hide a popup menu using native controls. | 776 // Message to show/hide a popup menu using native controls. |
778 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 777 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
779 FrameHostMsg_ShowPopup_Params) | 778 FrameHostMsg_ShowPopup_Params) |
780 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 779 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
781 | 780 |
782 #endif | 781 #endif |
OLD | NEW |