| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 IPC_STRUCT_TRAITS_MEMBER(frame_charset) | 157 IPC_STRUCT_TRAITS_MEMBER(frame_charset) |
| 158 IPC_STRUCT_TRAITS_MEMBER(referrer_policy) | 158 IPC_STRUCT_TRAITS_MEMBER(referrer_policy) |
| 159 IPC_STRUCT_TRAITS_MEMBER(custom_context) | 159 IPC_STRUCT_TRAITS_MEMBER(custom_context) |
| 160 IPC_STRUCT_TRAITS_MEMBER(custom_items) | 160 IPC_STRUCT_TRAITS_MEMBER(custom_items) |
| 161 IPC_STRUCT_TRAITS_MEMBER(source_type) | 161 IPC_STRUCT_TRAITS_MEMBER(source_type) |
| 162 #if defined(OS_ANDROID) | 162 #if defined(OS_ANDROID) |
| 163 IPC_STRUCT_TRAITS_MEMBER(selection_start) | 163 IPC_STRUCT_TRAITS_MEMBER(selection_start) |
| 164 IPC_STRUCT_TRAITS_MEMBER(selection_end) | 164 IPC_STRUCT_TRAITS_MEMBER(selection_end) |
| 165 #endif | 165 #endif |
| 166 IPC_STRUCT_TRAITS_MEMBER(input_field_type) | 166 IPC_STRUCT_TRAITS_MEMBER(input_field_type) |
| 167 IPC_STRUCT_TRAITS_MEMBER(selection_rect) |
| 168 IPC_STRUCT_TRAITS_MEMBER(from_touch) |
| 167 IPC_STRUCT_TRAITS_END() | 169 IPC_STRUCT_TRAITS_END() |
| 168 | 170 |
| 169 IPC_STRUCT_TRAITS_BEGIN(content::CustomContextMenuContext) | 171 IPC_STRUCT_TRAITS_BEGIN(content::CustomContextMenuContext) |
| 170 IPC_STRUCT_TRAITS_MEMBER(is_pepper_menu) | 172 IPC_STRUCT_TRAITS_MEMBER(is_pepper_menu) |
| 171 IPC_STRUCT_TRAITS_MEMBER(request_id) | 173 IPC_STRUCT_TRAITS_MEMBER(request_id) |
| 172 IPC_STRUCT_TRAITS_MEMBER(render_widget_id) | 174 IPC_STRUCT_TRAITS_MEMBER(render_widget_id) |
| 173 IPC_STRUCT_TRAITS_MEMBER(link_followed) | 175 IPC_STRUCT_TRAITS_MEMBER(link_followed) |
| 174 IPC_STRUCT_TRAITS_END() | 176 IPC_STRUCT_TRAITS_END() |
| 175 | 177 |
| 176 IPC_STRUCT_TRAITS_BEGIN(content::FrameOwnerProperties) | 178 IPC_STRUCT_TRAITS_BEGIN(content::FrameOwnerProperties) |
| (...skipping 1479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1656 int /* nfr_request_id */, | 1658 int /* nfr_request_id */, |
| 1657 float /* distance */) | 1659 float /* distance */) |
| 1658 | 1660 |
| 1659 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) | 1661 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) |
| 1660 #endif | 1662 #endif |
| 1661 | 1663 |
| 1662 // Adding a new message? Stick to the sort order above: first platform | 1664 // Adding a new message? Stick to the sort order above: first platform |
| 1663 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1665 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1664 // platform independent FrameHostMsg, then ifdefs for platform specific | 1666 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1665 // FrameHostMsg. | 1667 // FrameHostMsg. |
| OLD | NEW |