| 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 IPC_STRUCT_TRAITS_MEMBER(is_editable) | 153 IPC_STRUCT_TRAITS_MEMBER(is_editable) |
| 154 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default) | 154 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default) |
| 155 IPC_STRUCT_TRAITS_MEMBER(writing_direction_left_to_right) | 155 IPC_STRUCT_TRAITS_MEMBER(writing_direction_left_to_right) |
| 156 IPC_STRUCT_TRAITS_MEMBER(writing_direction_right_to_left) | 156 IPC_STRUCT_TRAITS_MEMBER(writing_direction_right_to_left) |
| 157 IPC_STRUCT_TRAITS_MEMBER(edit_flags) | 157 IPC_STRUCT_TRAITS_MEMBER(edit_flags) |
| 158 IPC_STRUCT_TRAITS_MEMBER(frame_charset) | 158 IPC_STRUCT_TRAITS_MEMBER(frame_charset) |
| 159 IPC_STRUCT_TRAITS_MEMBER(referrer_policy) | 159 IPC_STRUCT_TRAITS_MEMBER(referrer_policy) |
| 160 IPC_STRUCT_TRAITS_MEMBER(custom_context) | 160 IPC_STRUCT_TRAITS_MEMBER(custom_context) |
| 161 IPC_STRUCT_TRAITS_MEMBER(custom_items) | 161 IPC_STRUCT_TRAITS_MEMBER(custom_items) |
| 162 IPC_STRUCT_TRAITS_MEMBER(source_type) | 162 IPC_STRUCT_TRAITS_MEMBER(source_type) |
| 163 #if defined(OS_ANDROID) | |
| 164 IPC_STRUCT_TRAITS_MEMBER(selection_start) | |
| 165 IPC_STRUCT_TRAITS_MEMBER(selection_end) | |
| 166 #endif | |
| 167 IPC_STRUCT_TRAITS_MEMBER(input_field_type) | 163 IPC_STRUCT_TRAITS_MEMBER(input_field_type) |
| 164 IPC_STRUCT_TRAITS_MEMBER(selection_rect) |
| 168 IPC_STRUCT_TRAITS_END() | 165 IPC_STRUCT_TRAITS_END() |
| 169 | 166 |
| 170 IPC_STRUCT_TRAITS_BEGIN(content::CustomContextMenuContext) | 167 IPC_STRUCT_TRAITS_BEGIN(content::CustomContextMenuContext) |
| 171 IPC_STRUCT_TRAITS_MEMBER(is_pepper_menu) | 168 IPC_STRUCT_TRAITS_MEMBER(is_pepper_menu) |
| 172 IPC_STRUCT_TRAITS_MEMBER(request_id) | 169 IPC_STRUCT_TRAITS_MEMBER(request_id) |
| 173 IPC_STRUCT_TRAITS_MEMBER(render_widget_id) | 170 IPC_STRUCT_TRAITS_MEMBER(render_widget_id) |
| 174 IPC_STRUCT_TRAITS_MEMBER(link_followed) | 171 IPC_STRUCT_TRAITS_MEMBER(link_followed) |
| 175 IPC_STRUCT_TRAITS_END() | 172 IPC_STRUCT_TRAITS_END() |
| 176 | 173 |
| 177 IPC_STRUCT_TRAITS_BEGIN(content::FrameOwnerProperties) | 174 IPC_STRUCT_TRAITS_BEGIN(content::FrameOwnerProperties) |
| (...skipping 1498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1676 int /* nfr_request_id */, | 1673 int /* nfr_request_id */, |
| 1677 float /* distance */) | 1674 float /* distance */) |
| 1678 | 1675 |
| 1679 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) | 1676 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) |
| 1680 #endif | 1677 #endif |
| 1681 | 1678 |
| 1682 // Adding a new message? Stick to the sort order above: first platform | 1679 // Adding a new message? Stick to the sort order above: first platform |
| 1683 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1680 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1684 // platform independent FrameHostMsg, then ifdefs for platform specific | 1681 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1685 // FrameHostMsg. | 1682 // FrameHostMsg. |
| OLD | NEW |