| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 // string if we were unable to find a meaningful description. | 96 // string if we were unable to find a meaningful description. |
| 97 IPC_STRUCT_MEMBER(base::string16, error_description) | 97 IPC_STRUCT_MEMBER(base::string16, error_description) |
| 98 // The URL that the error is reported for. | 98 // The URL that the error is reported for. |
| 99 IPC_STRUCT_MEMBER(GURL, url) | 99 IPC_STRUCT_MEMBER(GURL, url) |
| 100 // True if the failure is the result of navigating to a POST again | 100 // True if the failure is the result of navigating to a POST again |
| 101 // and we're going to show the POST interstitial. | 101 // and we're going to show the POST interstitial. |
| 102 IPC_STRUCT_MEMBER(bool, showing_repost_interstitial) | 102 IPC_STRUCT_MEMBER(bool, showing_repost_interstitial) |
| 103 IPC_STRUCT_END() | 103 IPC_STRUCT_END() |
| 104 | 104 |
| 105 IPC_STRUCT_TRAITS_BEGIN(content::FrameNavigateParams) | 105 IPC_STRUCT_TRAITS_BEGIN(content::FrameNavigateParams) |
| 106 IPC_STRUCT_TRAITS_MEMBER(page_id) | |
| 107 IPC_STRUCT_TRAITS_MEMBER(url) | 106 IPC_STRUCT_TRAITS_MEMBER(url) |
| 108 IPC_STRUCT_TRAITS_MEMBER(base_url) | 107 IPC_STRUCT_TRAITS_MEMBER(base_url) |
| 109 IPC_STRUCT_TRAITS_MEMBER(referrer) | 108 IPC_STRUCT_TRAITS_MEMBER(referrer) |
| 110 IPC_STRUCT_TRAITS_MEMBER(transition) | 109 IPC_STRUCT_TRAITS_MEMBER(transition) |
| 111 IPC_STRUCT_TRAITS_MEMBER(redirects) | 110 IPC_STRUCT_TRAITS_MEMBER(redirects) |
| 112 IPC_STRUCT_TRAITS_MEMBER(should_update_history) | 111 IPC_STRUCT_TRAITS_MEMBER(should_update_history) |
| 113 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url) | 112 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url) |
| 114 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) | 113 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) |
| 115 IPC_STRUCT_TRAITS_MEMBER(contents_mime_type) | 114 IPC_STRUCT_TRAITS_MEMBER(contents_mime_type) |
| 116 IPC_STRUCT_TRAITS_MEMBER(socket_address) | 115 IPC_STRUCT_TRAITS_MEMBER(socket_address) |
| (...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 760 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) | 759 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) |
| 761 | 760 |
| 762 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 761 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
| 763 | 762 |
| 764 // Message to show/hide a popup menu using native controls. | 763 // Message to show/hide a popup menu using native controls. |
| 765 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 764 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
| 766 FrameHostMsg_ShowPopup_Params) | 765 FrameHostMsg_ShowPopup_Params) |
| 767 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 766 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
| 768 | 767 |
| 769 #endif | 768 #endif |
| OLD | NEW |