| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 IPC_STRUCT_TRAITS_END() | 84 IPC_STRUCT_TRAITS_END() |
| 85 | 85 |
| 86 IPC_STRUCT_TRAITS_BEGIN(content::CustomContextMenuContext) | 86 IPC_STRUCT_TRAITS_BEGIN(content::CustomContextMenuContext) |
| 87 IPC_STRUCT_TRAITS_MEMBER(is_pepper_menu) | 87 IPC_STRUCT_TRAITS_MEMBER(is_pepper_menu) |
| 88 IPC_STRUCT_TRAITS_MEMBER(request_id) | 88 IPC_STRUCT_TRAITS_MEMBER(request_id) |
| 89 IPC_STRUCT_TRAITS_MEMBER(render_widget_id) | 89 IPC_STRUCT_TRAITS_MEMBER(render_widget_id) |
| 90 IPC_STRUCT_TRAITS_MEMBER(link_followed) | 90 IPC_STRUCT_TRAITS_MEMBER(link_followed) |
| 91 IPC_STRUCT_TRAITS_END() | 91 IPC_STRUCT_TRAITS_END() |
| 92 | 92 |
| 93 IPC_STRUCT_TRAITS_BEGIN(content::TransitionElement) | 93 IPC_STRUCT_TRAITS_BEGIN(content::TransitionElement) |
| 94 IPC_STRUCT_TRAITS_MEMBER(name) | 94 IPC_STRUCT_TRAITS_MEMBER(id) |
| 95 IPC_STRUCT_TRAITS_MEMBER(rect) | 95 IPC_STRUCT_TRAITS_MEMBER(rect) |
| 96 IPC_STRUCT_TRAITS_END() | 96 IPC_STRUCT_TRAITS_END() |
| 97 | 97 |
| 98 IPC_STRUCT_BEGIN(FrameHostMsg_AddNavigationTransitionData_Params) | 98 IPC_STRUCT_BEGIN(FrameHostMsg_AddNavigationTransitionData_Params) |
| 99 IPC_STRUCT_MEMBER(int, render_frame_id) | 99 IPC_STRUCT_MEMBER(int, render_frame_id) |
| 100 IPC_STRUCT_MEMBER(std::string, allowed_destination_host_pattern) | 100 IPC_STRUCT_MEMBER(std::string, allowed_destination_host_pattern) |
| 101 IPC_STRUCT_MEMBER(std::string, selector) | 101 IPC_STRUCT_MEMBER(std::string, selector) |
| 102 IPC_STRUCT_MEMBER(std::string, markup) | 102 IPC_STRUCT_MEMBER(std::string, markup) |
| 103 IPC_STRUCT_MEMBER(std::vector<content::TransitionElement>, elements) | 103 IPC_STRUCT_MEMBER(std::vector<content::TransitionElement>, elements) |
| 104 IPC_STRUCT_END() | 104 IPC_STRUCT_END() |
| (...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 783 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) | 783 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) |
| 784 | 784 |
| 785 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 785 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
| 786 | 786 |
| 787 // Message to show/hide a popup menu using native controls. | 787 // Message to show/hide a popup menu using native controls. |
| 788 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 788 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
| 789 FrameHostMsg_ShowPopup_Params) | 789 FrameHostMsg_ShowPopup_Params) |
| 790 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 790 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
| 791 | 791 |
| 792 #endif | 792 #endif |
| OLD | NEW |