| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 IPC_STRUCT_TRAITS_MEMBER(suggested_filename) | 136 IPC_STRUCT_TRAITS_MEMBER(suggested_filename) |
| 137 IPC_STRUCT_TRAITS_MEMBER(misspelled_word) | 137 IPC_STRUCT_TRAITS_MEMBER(misspelled_word) |
| 138 IPC_STRUCT_TRAITS_MEMBER(misspelling_hash) | 138 IPC_STRUCT_TRAITS_MEMBER(misspelling_hash) |
| 139 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions) | 139 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions) |
| 140 IPC_STRUCT_TRAITS_MEMBER(spellcheck_enabled) | 140 IPC_STRUCT_TRAITS_MEMBER(spellcheck_enabled) |
| 141 IPC_STRUCT_TRAITS_MEMBER(is_editable) | 141 IPC_STRUCT_TRAITS_MEMBER(is_editable) |
| 142 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default) | 142 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default) |
| 143 IPC_STRUCT_TRAITS_MEMBER(writing_direction_left_to_right) | 143 IPC_STRUCT_TRAITS_MEMBER(writing_direction_left_to_right) |
| 144 IPC_STRUCT_TRAITS_MEMBER(writing_direction_right_to_left) | 144 IPC_STRUCT_TRAITS_MEMBER(writing_direction_right_to_left) |
| 145 IPC_STRUCT_TRAITS_MEMBER(edit_flags) | 145 IPC_STRUCT_TRAITS_MEMBER(edit_flags) |
| 146 IPC_STRUCT_TRAITS_MEMBER(security_info) | |
| 147 IPC_STRUCT_TRAITS_MEMBER(frame_charset) | 146 IPC_STRUCT_TRAITS_MEMBER(frame_charset) |
| 148 IPC_STRUCT_TRAITS_MEMBER(referrer_policy) | 147 IPC_STRUCT_TRAITS_MEMBER(referrer_policy) |
| 149 IPC_STRUCT_TRAITS_MEMBER(custom_context) | 148 IPC_STRUCT_TRAITS_MEMBER(custom_context) |
| 150 IPC_STRUCT_TRAITS_MEMBER(custom_items) | 149 IPC_STRUCT_TRAITS_MEMBER(custom_items) |
| 151 IPC_STRUCT_TRAITS_MEMBER(source_type) | 150 IPC_STRUCT_TRAITS_MEMBER(source_type) |
| 152 #if defined(OS_ANDROID) | 151 #if defined(OS_ANDROID) |
| 153 IPC_STRUCT_TRAITS_MEMBER(selection_start) | 152 IPC_STRUCT_TRAITS_MEMBER(selection_start) |
| 154 IPC_STRUCT_TRAITS_MEMBER(selection_end) | 153 IPC_STRUCT_TRAITS_MEMBER(selection_end) |
| 155 #endif | 154 #endif |
| 156 IPC_STRUCT_TRAITS_MEMBER(input_field_type) | 155 IPC_STRUCT_TRAITS_MEMBER(input_field_type) |
| (...skipping 1422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1579 // nearest find result in the sending frame. | 1578 // nearest find result in the sending frame. |
| 1580 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1579 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1581 int /* nfr_request_id */, | 1580 int /* nfr_request_id */, |
| 1582 float /* distance */) | 1581 float /* distance */) |
| 1583 #endif | 1582 #endif |
| 1584 | 1583 |
| 1585 // Adding a new message? Stick to the sort order above: first platform | 1584 // Adding a new message? Stick to the sort order above: first platform |
| 1586 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1585 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1587 // platform independent FrameHostMsg, then ifdefs for platform specific | 1586 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1588 // FrameHostMsg. | 1587 // FrameHostMsg. |
| OLD | NEW |