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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 | 172 |
173 IPC_STRUCT_TRAITS_BEGIN(ContextMenuParams) | 173 IPC_STRUCT_TRAITS_BEGIN(ContextMenuParams) |
174 IPC_STRUCT_TRAITS_MEMBER(media_type) | 174 IPC_STRUCT_TRAITS_MEMBER(media_type) |
175 IPC_STRUCT_TRAITS_MEMBER(x) | 175 IPC_STRUCT_TRAITS_MEMBER(x) |
176 IPC_STRUCT_TRAITS_MEMBER(y) | 176 IPC_STRUCT_TRAITS_MEMBER(y) |
177 IPC_STRUCT_TRAITS_MEMBER(link_url) | 177 IPC_STRUCT_TRAITS_MEMBER(link_url) |
178 IPC_STRUCT_TRAITS_MEMBER(unfiltered_link_url) | 178 IPC_STRUCT_TRAITS_MEMBER(unfiltered_link_url) |
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(frame_url) | 183 IPC_STRUCT_TRAITS_MEMBER(frame_url) |
183 IPC_STRUCT_TRAITS_MEMBER(frame_content_state) | 184 IPC_STRUCT_TRAITS_MEMBER(frame_content_state) |
184 IPC_STRUCT_TRAITS_MEMBER(media_flags) | 185 IPC_STRUCT_TRAITS_MEMBER(media_flags) |
185 IPC_STRUCT_TRAITS_MEMBER(selection_text) | 186 IPC_STRUCT_TRAITS_MEMBER(selection_text) |
186 IPC_STRUCT_TRAITS_MEMBER(misspelled_word) | 187 IPC_STRUCT_TRAITS_MEMBER(misspelled_word) |
187 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions) | 188 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions) |
188 IPC_STRUCT_TRAITS_MEMBER(spellcheck_enabled) | 189 IPC_STRUCT_TRAITS_MEMBER(spellcheck_enabled) |
189 IPC_STRUCT_TRAITS_MEMBER(is_editable) | 190 IPC_STRUCT_TRAITS_MEMBER(is_editable) |
190 #if defined(OS_MACOSX) | 191 #if defined(OS_MACOSX) |
191 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default) | 192 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default) |
(...skipping 1766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1958 std::string /* value */) | 1959 std::string /* value */) |
1959 | 1960 |
1960 // Send back a string to be recorded by UserMetrics. | 1961 // Send back a string to be recorded by UserMetrics. |
1961 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction, | 1962 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction, |
1962 std::string /* action */) | 1963 std::string /* action */) |
1963 | 1964 |
1964 // Provide the browser process with current renderer framerate. | 1965 // Provide the browser process with current renderer framerate. |
1965 IPC_MESSAGE_CONTROL2(ViewHostMsg_FPS, | 1966 IPC_MESSAGE_CONTROL2(ViewHostMsg_FPS, |
1966 int /* routing id */, | 1967 int /* routing id */, |
1967 float /* frames per second */) | 1968 float /* frames per second */) |
OLD | NEW |