| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 IPC_STRUCT_TRAITS_MEMBER(properties) | 131 IPC_STRUCT_TRAITS_MEMBER(properties) |
| 132 IPC_STRUCT_TRAITS_MEMBER(page_url) | 132 IPC_STRUCT_TRAITS_MEMBER(page_url) |
| 133 IPC_STRUCT_TRAITS_MEMBER(keyword_url) | 133 IPC_STRUCT_TRAITS_MEMBER(keyword_url) |
| 134 IPC_STRUCT_TRAITS_MEMBER(frame_url) | 134 IPC_STRUCT_TRAITS_MEMBER(frame_url) |
| 135 IPC_STRUCT_TRAITS_MEMBER(frame_page_state) | 135 IPC_STRUCT_TRAITS_MEMBER(frame_page_state) |
| 136 IPC_STRUCT_TRAITS_MEMBER(media_flags) | 136 IPC_STRUCT_TRAITS_MEMBER(media_flags) |
| 137 IPC_STRUCT_TRAITS_MEMBER(selection_text) | 137 IPC_STRUCT_TRAITS_MEMBER(selection_text) |
| 138 IPC_STRUCT_TRAITS_MEMBER(title_text) | 138 IPC_STRUCT_TRAITS_MEMBER(title_text) |
| 139 IPC_STRUCT_TRAITS_MEMBER(suggested_filename) | 139 IPC_STRUCT_TRAITS_MEMBER(suggested_filename) |
| 140 IPC_STRUCT_TRAITS_MEMBER(misspelled_word) | 140 IPC_STRUCT_TRAITS_MEMBER(misspelled_word) |
| 141 IPC_STRUCT_TRAITS_MEMBER(misspelling_hash) | |
| 142 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions) | 141 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions) |
| 143 IPC_STRUCT_TRAITS_MEMBER(spellcheck_enabled) | 142 IPC_STRUCT_TRAITS_MEMBER(spellcheck_enabled) |
| 144 IPC_STRUCT_TRAITS_MEMBER(is_editable) | 143 IPC_STRUCT_TRAITS_MEMBER(is_editable) |
| 145 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default) | 144 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default) |
| 146 IPC_STRUCT_TRAITS_MEMBER(writing_direction_left_to_right) | 145 IPC_STRUCT_TRAITS_MEMBER(writing_direction_left_to_right) |
| 147 IPC_STRUCT_TRAITS_MEMBER(writing_direction_right_to_left) | 146 IPC_STRUCT_TRAITS_MEMBER(writing_direction_right_to_left) |
| 148 IPC_STRUCT_TRAITS_MEMBER(edit_flags) | 147 IPC_STRUCT_TRAITS_MEMBER(edit_flags) |
| 149 IPC_STRUCT_TRAITS_MEMBER(frame_charset) | 148 IPC_STRUCT_TRAITS_MEMBER(frame_charset) |
| 150 IPC_STRUCT_TRAITS_MEMBER(referrer_policy) | 149 IPC_STRUCT_TRAITS_MEMBER(referrer_policy) |
| 151 IPC_STRUCT_TRAITS_MEMBER(custom_context) | 150 IPC_STRUCT_TRAITS_MEMBER(custom_context) |
| (...skipping 1420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1572 // nearest find result in the sending frame. | 1571 // nearest find result in the sending frame. |
| 1573 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1572 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1574 int /* nfr_request_id */, | 1573 int /* nfr_request_id */, |
| 1575 float /* distance */) | 1574 float /* distance */) |
| 1576 #endif | 1575 #endif |
| 1577 | 1576 |
| 1578 // Adding a new message? Stick to the sort order above: first platform | 1577 // Adding a new message? Stick to the sort order above: first platform |
| 1579 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1578 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1580 // platform independent FrameHostMsg, then ifdefs for platform specific | 1579 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1581 // FrameHostMsg. | 1580 // FrameHostMsg. |
| OLD | NEW |