| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 page rendering. | 5 // IPC messages for page rendering. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 #include "base/process.h" | 8 #include "base/process.h" |
| 9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
| 10 #include "content/common/common_param_traits.h" | 10 #include "content/common/common_param_traits.h" |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 IPC_STRUCT_TRAITS_MEMBER(src_url) | 181 IPC_STRUCT_TRAITS_MEMBER(src_url) |
| 182 IPC_STRUCT_TRAITS_MEMBER(is_image_blocked) | 182 IPC_STRUCT_TRAITS_MEMBER(is_image_blocked) |
| 183 IPC_STRUCT_TRAITS_MEMBER(page_url) | 183 IPC_STRUCT_TRAITS_MEMBER(page_url) |
| 184 IPC_STRUCT_TRAITS_MEMBER(keyword_url) | 184 IPC_STRUCT_TRAITS_MEMBER(keyword_url) |
| 185 IPC_STRUCT_TRAITS_MEMBER(frame_url) | 185 IPC_STRUCT_TRAITS_MEMBER(frame_url) |
| 186 IPC_STRUCT_TRAITS_MEMBER(frame_content_state) | 186 IPC_STRUCT_TRAITS_MEMBER(frame_content_state) |
| 187 IPC_STRUCT_TRAITS_MEMBER(media_flags) | 187 IPC_STRUCT_TRAITS_MEMBER(media_flags) |
| 188 IPC_STRUCT_TRAITS_MEMBER(selection_text) | 188 IPC_STRUCT_TRAITS_MEMBER(selection_text) |
| 189 IPC_STRUCT_TRAITS_MEMBER(misspelled_word) | 189 IPC_STRUCT_TRAITS_MEMBER(misspelled_word) |
| 190 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions) | 190 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions) |
| 191 IPC_STRUCT_TRAITS_MEMBER(speech_input_enabled) |
| 191 IPC_STRUCT_TRAITS_MEMBER(spellcheck_enabled) | 192 IPC_STRUCT_TRAITS_MEMBER(spellcheck_enabled) |
| 192 IPC_STRUCT_TRAITS_MEMBER(is_editable) | 193 IPC_STRUCT_TRAITS_MEMBER(is_editable) |
| 193 #if defined(OS_MACOSX) | 194 #if defined(OS_MACOSX) |
| 194 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default) | 195 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default) |
| 195 IPC_STRUCT_TRAITS_MEMBER(writing_direction_left_to_right) | 196 IPC_STRUCT_TRAITS_MEMBER(writing_direction_left_to_right) |
| 196 IPC_STRUCT_TRAITS_MEMBER(writing_direction_right_to_left) | 197 IPC_STRUCT_TRAITS_MEMBER(writing_direction_right_to_left) |
| 197 #endif // OS_MACOSX | 198 #endif // OS_MACOSX |
| 198 IPC_STRUCT_TRAITS_MEMBER(edit_flags) | 199 IPC_STRUCT_TRAITS_MEMBER(edit_flags) |
| 199 IPC_STRUCT_TRAITS_MEMBER(security_info) | 200 IPC_STRUCT_TRAITS_MEMBER(security_info) |
| 200 IPC_STRUCT_TRAITS_MEMBER(frame_charset) | 201 IPC_STRUCT_TRAITS_MEMBER(frame_charset) |
| (...skipping 1795 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1996 | 1997 |
| 1997 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendCurrentPageAllSavableResourceLinks, | 1998 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendCurrentPageAllSavableResourceLinks, |
| 1998 std::vector<GURL> /* all savable resource links */, | 1999 std::vector<GURL> /* all savable resource links */, |
| 1999 std::vector<GURL> /* all referrers of resource links */, | 2000 std::vector<GURL> /* all referrers of resource links */, |
| 2000 std::vector<GURL> /* all frame links */) | 2001 std::vector<GURL> /* all frame links */) |
| 2001 | 2002 |
| 2002 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendSerializedHtmlData, | 2003 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendSerializedHtmlData, |
| 2003 GURL /* frame's url */, | 2004 GURL /* frame's url */, |
| 2004 std::string /* data buffer */, | 2005 std::string /* data buffer */, |
| 2005 int32 /* complete status */) | 2006 int32 /* complete status */) |
| OLD | NEW |