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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 IPC_STRUCT_TRAITS_MEMBER(src_url) | 179 IPC_STRUCT_TRAITS_MEMBER(src_url) |
180 IPC_STRUCT_TRAITS_MEMBER(is_image_blocked) | 180 IPC_STRUCT_TRAITS_MEMBER(is_image_blocked) |
181 IPC_STRUCT_TRAITS_MEMBER(page_url) | 181 IPC_STRUCT_TRAITS_MEMBER(page_url) |
182 IPC_STRUCT_TRAITS_MEMBER(keyword_url) | 182 IPC_STRUCT_TRAITS_MEMBER(keyword_url) |
183 IPC_STRUCT_TRAITS_MEMBER(frame_url) | 183 IPC_STRUCT_TRAITS_MEMBER(frame_url) |
184 IPC_STRUCT_TRAITS_MEMBER(frame_content_state) | 184 IPC_STRUCT_TRAITS_MEMBER(frame_content_state) |
185 IPC_STRUCT_TRAITS_MEMBER(media_flags) | 185 IPC_STRUCT_TRAITS_MEMBER(media_flags) |
186 IPC_STRUCT_TRAITS_MEMBER(selection_text) | 186 IPC_STRUCT_TRAITS_MEMBER(selection_text) |
187 IPC_STRUCT_TRAITS_MEMBER(misspelled_word) | 187 IPC_STRUCT_TRAITS_MEMBER(misspelled_word) |
188 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions) | 188 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions) |
| 189 IPC_STRUCT_TRAITS_MEMBER(speech_input_enabled) |
189 IPC_STRUCT_TRAITS_MEMBER(spellcheck_enabled) | 190 IPC_STRUCT_TRAITS_MEMBER(spellcheck_enabled) |
190 IPC_STRUCT_TRAITS_MEMBER(is_editable) | 191 IPC_STRUCT_TRAITS_MEMBER(is_editable) |
191 #if defined(OS_MACOSX) | 192 #if defined(OS_MACOSX) |
192 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default) | 193 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default) |
193 IPC_STRUCT_TRAITS_MEMBER(writing_direction_left_to_right) | 194 IPC_STRUCT_TRAITS_MEMBER(writing_direction_left_to_right) |
194 IPC_STRUCT_TRAITS_MEMBER(writing_direction_right_to_left) | 195 IPC_STRUCT_TRAITS_MEMBER(writing_direction_right_to_left) |
195 #endif // OS_MACOSX | 196 #endif // OS_MACOSX |
196 IPC_STRUCT_TRAITS_MEMBER(edit_flags) | 197 IPC_STRUCT_TRAITS_MEMBER(edit_flags) |
197 IPC_STRUCT_TRAITS_MEMBER(security_info) | 198 IPC_STRUCT_TRAITS_MEMBER(security_info) |
198 IPC_STRUCT_TRAITS_MEMBER(frame_charset) | 199 IPC_STRUCT_TRAITS_MEMBER(frame_charset) |
(...skipping 1757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1956 std::string /* value */) | 1957 std::string /* value */) |
1957 | 1958 |
1958 // Send back a string to be recorded by UserMetrics. | 1959 // Send back a string to be recorded by UserMetrics. |
1959 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction, | 1960 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction, |
1960 std::string /* action */) | 1961 std::string /* action */) |
1961 | 1962 |
1962 // Provide the browser process with current renderer framerate. | 1963 // Provide the browser process with current renderer framerate. |
1963 IPC_MESSAGE_CONTROL2(ViewHostMsg_FPS, | 1964 IPC_MESSAGE_CONTROL2(ViewHostMsg_FPS, |
1964 int /* routing id */, | 1965 int /* routing id */, |
1965 float /* frames per second */) | 1966 float /* frames per second */) |
OLD | NEW |