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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 IPC_STRUCT_TRAITS_MEMBER(src_url) | 61 IPC_STRUCT_TRAITS_MEMBER(src_url) |
62 IPC_STRUCT_TRAITS_MEMBER(has_image_contents) | 62 IPC_STRUCT_TRAITS_MEMBER(has_image_contents) |
63 IPC_STRUCT_TRAITS_MEMBER(page_url) | 63 IPC_STRUCT_TRAITS_MEMBER(page_url) |
64 IPC_STRUCT_TRAITS_MEMBER(keyword_url) | 64 IPC_STRUCT_TRAITS_MEMBER(keyword_url) |
65 IPC_STRUCT_TRAITS_MEMBER(frame_url) | 65 IPC_STRUCT_TRAITS_MEMBER(frame_url) |
66 IPC_STRUCT_TRAITS_MEMBER(frame_page_state) | 66 IPC_STRUCT_TRAITS_MEMBER(frame_page_state) |
67 IPC_STRUCT_TRAITS_MEMBER(media_flags) | 67 IPC_STRUCT_TRAITS_MEMBER(media_flags) |
68 IPC_STRUCT_TRAITS_MEMBER(selection_text) | 68 IPC_STRUCT_TRAITS_MEMBER(selection_text) |
69 IPC_STRUCT_TRAITS_MEMBER(suggested_filename) | 69 IPC_STRUCT_TRAITS_MEMBER(suggested_filename) |
70 IPC_STRUCT_TRAITS_MEMBER(misspelled_word) | 70 IPC_STRUCT_TRAITS_MEMBER(misspelled_word) |
| 71 IPC_STRUCT_TRAITS_MEMBER(misspelling_hash) |
71 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions) | 72 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions) |
72 IPC_STRUCT_TRAITS_MEMBER(spellcheck_enabled) | 73 IPC_STRUCT_TRAITS_MEMBER(spellcheck_enabled) |
73 IPC_STRUCT_TRAITS_MEMBER(is_editable) | 74 IPC_STRUCT_TRAITS_MEMBER(is_editable) |
74 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default) | 75 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default) |
75 IPC_STRUCT_TRAITS_MEMBER(writing_direction_left_to_right) | 76 IPC_STRUCT_TRAITS_MEMBER(writing_direction_left_to_right) |
76 IPC_STRUCT_TRAITS_MEMBER(writing_direction_right_to_left) | 77 IPC_STRUCT_TRAITS_MEMBER(writing_direction_right_to_left) |
77 IPC_STRUCT_TRAITS_MEMBER(edit_flags) | 78 IPC_STRUCT_TRAITS_MEMBER(edit_flags) |
78 IPC_STRUCT_TRAITS_MEMBER(security_info) | 79 IPC_STRUCT_TRAITS_MEMBER(security_info) |
79 IPC_STRUCT_TRAITS_MEMBER(frame_charset) | 80 IPC_STRUCT_TRAITS_MEMBER(frame_charset) |
80 IPC_STRUCT_TRAITS_MEMBER(referrer_policy) | 81 IPC_STRUCT_TRAITS_MEMBER(referrer_policy) |
(...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
838 IPC_MESSAGE_ROUTED0(FrameHostMsg_DispatchLoad) | 839 IPC_MESSAGE_ROUTED0(FrameHostMsg_DispatchLoad) |
839 | 840 |
840 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 841 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
841 | 842 |
842 // Message to show/hide a popup menu using native controls. | 843 // Message to show/hide a popup menu using native controls. |
843 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 844 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
844 FrameHostMsg_ShowPopup_Params) | 845 FrameHostMsg_ShowPopup_Params) |
845 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 846 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
846 | 847 |
847 #endif | 848 #endif |
OLD | NEW |