| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 IPC_STRUCT_TRAITS_MEMBER(has_image_contents) | 49 IPC_STRUCT_TRAITS_MEMBER(has_image_contents) |
| 50 IPC_STRUCT_TRAITS_MEMBER(page_url) | 50 IPC_STRUCT_TRAITS_MEMBER(page_url) |
| 51 IPC_STRUCT_TRAITS_MEMBER(keyword_url) | 51 IPC_STRUCT_TRAITS_MEMBER(keyword_url) |
| 52 IPC_STRUCT_TRAITS_MEMBER(frame_url) | 52 IPC_STRUCT_TRAITS_MEMBER(frame_url) |
| 53 IPC_STRUCT_TRAITS_MEMBER(frame_page_state) | 53 IPC_STRUCT_TRAITS_MEMBER(frame_page_state) |
| 54 IPC_STRUCT_TRAITS_MEMBER(media_flags) | 54 IPC_STRUCT_TRAITS_MEMBER(media_flags) |
| 55 IPC_STRUCT_TRAITS_MEMBER(selection_text) | 55 IPC_STRUCT_TRAITS_MEMBER(selection_text) |
| 56 IPC_STRUCT_TRAITS_MEMBER(misspelled_word) | 56 IPC_STRUCT_TRAITS_MEMBER(misspelled_word) |
| 57 IPC_STRUCT_TRAITS_MEMBER(misspelling_hash) | 57 IPC_STRUCT_TRAITS_MEMBER(misspelling_hash) |
| 58 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions) | 58 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions) |
| 59 IPC_STRUCT_TRAITS_MEMBER(speech_input_enabled) | |
| 60 IPC_STRUCT_TRAITS_MEMBER(spellcheck_enabled) | 59 IPC_STRUCT_TRAITS_MEMBER(spellcheck_enabled) |
| 61 IPC_STRUCT_TRAITS_MEMBER(is_editable) | 60 IPC_STRUCT_TRAITS_MEMBER(is_editable) |
| 62 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default) | 61 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default) |
| 63 IPC_STRUCT_TRAITS_MEMBER(writing_direction_left_to_right) | 62 IPC_STRUCT_TRAITS_MEMBER(writing_direction_left_to_right) |
| 64 IPC_STRUCT_TRAITS_MEMBER(writing_direction_right_to_left) | 63 IPC_STRUCT_TRAITS_MEMBER(writing_direction_right_to_left) |
| 65 IPC_STRUCT_TRAITS_MEMBER(edit_flags) | 64 IPC_STRUCT_TRAITS_MEMBER(edit_flags) |
| 66 IPC_STRUCT_TRAITS_MEMBER(security_info) | 65 IPC_STRUCT_TRAITS_MEMBER(security_info) |
| 67 IPC_STRUCT_TRAITS_MEMBER(frame_charset) | 66 IPC_STRUCT_TRAITS_MEMBER(frame_charset) |
| 68 IPC_STRUCT_TRAITS_MEMBER(referrer_policy) | 67 IPC_STRUCT_TRAITS_MEMBER(referrer_policy) |
| 69 IPC_STRUCT_TRAITS_MEMBER(custom_context) | 68 IPC_STRUCT_TRAITS_MEMBER(custom_context) |
| (...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 566 SkColor /* color */, | 565 SkColor /* color */, |
| 567 std::vector<content::ColorSuggestion> /* suggestions */) | 566 std::vector<content::ColorSuggestion> /* suggestions */) |
| 568 | 567 |
| 569 // Asks the browser to end the color chooser. | 568 // Asks the browser to end the color chooser. |
| 570 IPC_MESSAGE_ROUTED1(FrameHostMsg_EndColorChooser, int /* id */) | 569 IPC_MESSAGE_ROUTED1(FrameHostMsg_EndColorChooser, int /* id */) |
| 571 | 570 |
| 572 // Change the selected color in the color chooser. | 571 // Change the selected color in the color chooser. |
| 573 IPC_MESSAGE_ROUTED2(FrameHostMsg_SetSelectedColorInColorChooser, | 572 IPC_MESSAGE_ROUTED2(FrameHostMsg_SetSelectedColorInColorChooser, |
| 574 int /* id */, | 573 int /* id */, |
| 575 SkColor /* color */) | 574 SkColor /* color */) |
| OLD | NEW |