OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 IPC_STRUCT_TRAITS_MEMBER(password_form) | 289 IPC_STRUCT_TRAITS_MEMBER(password_form) |
290 IPC_STRUCT_TRAITS_MEMBER(contents_mime_type) | 290 IPC_STRUCT_TRAITS_MEMBER(contents_mime_type) |
291 IPC_STRUCT_TRAITS_MEMBER(socket_address) | 291 IPC_STRUCT_TRAITS_MEMBER(socket_address) |
292 IPC_STRUCT_TRAITS_END() | 292 IPC_STRUCT_TRAITS_END() |
293 | 293 |
294 IPC_STRUCT_TRAITS_BEGIN(content::RendererPreferences) | 294 IPC_STRUCT_TRAITS_BEGIN(content::RendererPreferences) |
295 IPC_STRUCT_TRAITS_MEMBER(can_accept_load_drops) | 295 IPC_STRUCT_TRAITS_MEMBER(can_accept_load_drops) |
296 IPC_STRUCT_TRAITS_MEMBER(should_antialias_text) | 296 IPC_STRUCT_TRAITS_MEMBER(should_antialias_text) |
297 IPC_STRUCT_TRAITS_MEMBER(hinting) | 297 IPC_STRUCT_TRAITS_MEMBER(hinting) |
298 IPC_STRUCT_TRAITS_MEMBER(subpixel_rendering) | 298 IPC_STRUCT_TRAITS_MEMBER(subpixel_rendering) |
| 299 IPC_STRUCT_TRAITS_MEMBER(use_subpixel_positioning) |
299 IPC_STRUCT_TRAITS_MEMBER(focus_ring_color) | 300 IPC_STRUCT_TRAITS_MEMBER(focus_ring_color) |
300 IPC_STRUCT_TRAITS_MEMBER(thumb_active_color) | 301 IPC_STRUCT_TRAITS_MEMBER(thumb_active_color) |
301 IPC_STRUCT_TRAITS_MEMBER(thumb_inactive_color) | 302 IPC_STRUCT_TRAITS_MEMBER(thumb_inactive_color) |
302 IPC_STRUCT_TRAITS_MEMBER(track_color) | 303 IPC_STRUCT_TRAITS_MEMBER(track_color) |
303 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) | 304 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) |
304 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) | 305 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) |
305 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) | 306 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) |
306 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) | 307 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) |
307 IPC_STRUCT_TRAITS_MEMBER(browser_handles_non_local_top_level_requests) | 308 IPC_STRUCT_TRAITS_MEMBER(browser_handles_non_local_top_level_requests) |
308 IPC_STRUCT_TRAITS_MEMBER(browser_handles_all_top_level_requests) | 309 IPC_STRUCT_TRAITS_MEMBER(browser_handles_all_top_level_requests) |
(...skipping 1781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2090 // (according to the value of is_hung). The browser can give the user the | 2091 // (according to the value of is_hung). The browser can give the user the |
2091 // option of killing the plugin. | 2092 // option of killing the plugin. |
2092 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2093 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
2093 int /* plugin_child_id */, | 2094 int /* plugin_child_id */, |
2094 FilePath /* path */, | 2095 FilePath /* path */, |
2095 bool /* is_hung */) | 2096 bool /* is_hung */) |
2096 | 2097 |
2097 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2098 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
2098 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2099 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
2099 int /* orientation */) | 2100 int /* orientation */) |
OLD | NEW |