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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 IPC_STRUCT_TRAITS_MEMBER(link_text) | 60 IPC_STRUCT_TRAITS_MEMBER(link_text) |
61 IPC_STRUCT_TRAITS_MEMBER(unfiltered_link_url) | 61 IPC_STRUCT_TRAITS_MEMBER(unfiltered_link_url) |
62 IPC_STRUCT_TRAITS_MEMBER(src_url) | 62 IPC_STRUCT_TRAITS_MEMBER(src_url) |
63 IPC_STRUCT_TRAITS_MEMBER(has_image_contents) | 63 IPC_STRUCT_TRAITS_MEMBER(has_image_contents) |
64 IPC_STRUCT_TRAITS_MEMBER(page_url) | 64 IPC_STRUCT_TRAITS_MEMBER(page_url) |
65 IPC_STRUCT_TRAITS_MEMBER(keyword_url) | 65 IPC_STRUCT_TRAITS_MEMBER(keyword_url) |
66 IPC_STRUCT_TRAITS_MEMBER(frame_url) | 66 IPC_STRUCT_TRAITS_MEMBER(frame_url) |
67 IPC_STRUCT_TRAITS_MEMBER(frame_page_state) | 67 IPC_STRUCT_TRAITS_MEMBER(frame_page_state) |
68 IPC_STRUCT_TRAITS_MEMBER(media_flags) | 68 IPC_STRUCT_TRAITS_MEMBER(media_flags) |
69 IPC_STRUCT_TRAITS_MEMBER(selection_text) | 69 IPC_STRUCT_TRAITS_MEMBER(selection_text) |
| 70 IPC_STRUCT_TRAITS_MEMBER(title_text) |
70 IPC_STRUCT_TRAITS_MEMBER(suggested_filename) | 71 IPC_STRUCT_TRAITS_MEMBER(suggested_filename) |
71 IPC_STRUCT_TRAITS_MEMBER(misspelled_word) | 72 IPC_STRUCT_TRAITS_MEMBER(misspelled_word) |
72 IPC_STRUCT_TRAITS_MEMBER(misspelling_hash) | 73 IPC_STRUCT_TRAITS_MEMBER(misspelling_hash) |
73 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions) | 74 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions) |
74 IPC_STRUCT_TRAITS_MEMBER(spellcheck_enabled) | 75 IPC_STRUCT_TRAITS_MEMBER(spellcheck_enabled) |
75 IPC_STRUCT_TRAITS_MEMBER(is_editable) | 76 IPC_STRUCT_TRAITS_MEMBER(is_editable) |
76 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default) | 77 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default) |
77 IPC_STRUCT_TRAITS_MEMBER(writing_direction_left_to_right) | 78 IPC_STRUCT_TRAITS_MEMBER(writing_direction_left_to_right) |
78 IPC_STRUCT_TRAITS_MEMBER(writing_direction_right_to_left) | 79 IPC_STRUCT_TRAITS_MEMBER(writing_direction_right_to_left) |
79 IPC_STRUCT_TRAITS_MEMBER(edit_flags) | 80 IPC_STRUCT_TRAITS_MEMBER(edit_flags) |
(...skipping 889 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
969 FrameMsg_PostMessage_Params) | 970 FrameMsg_PostMessage_Params) |
970 | 971 |
971 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 972 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
972 | 973 |
973 // Message to show/hide a popup menu using native controls. | 974 // Message to show/hide a popup menu using native controls. |
974 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 975 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
975 FrameHostMsg_ShowPopup_Params) | 976 FrameHostMsg_ShowPopup_Params) |
976 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 977 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
977 | 978 |
978 #endif | 979 #endif |
OLD | NEW |