| 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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) | 291 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) |
| 292 IPC_STRUCT_TRAITS_MEMBER(password_form) | 292 IPC_STRUCT_TRAITS_MEMBER(password_form) |
| 293 IPC_STRUCT_TRAITS_MEMBER(contents_mime_type) | 293 IPC_STRUCT_TRAITS_MEMBER(contents_mime_type) |
| 294 IPC_STRUCT_TRAITS_MEMBER(socket_address) | 294 IPC_STRUCT_TRAITS_MEMBER(socket_address) |
| 295 IPC_STRUCT_TRAITS_END() | 295 IPC_STRUCT_TRAITS_END() |
| 296 | 296 |
| 297 IPC_STRUCT_TRAITS_BEGIN(content::RendererPreferences) | 297 IPC_STRUCT_TRAITS_BEGIN(content::RendererPreferences) |
| 298 IPC_STRUCT_TRAITS_MEMBER(can_accept_load_drops) | 298 IPC_STRUCT_TRAITS_MEMBER(can_accept_load_drops) |
| 299 IPC_STRUCT_TRAITS_MEMBER(should_antialias_text) | 299 IPC_STRUCT_TRAITS_MEMBER(should_antialias_text) |
| 300 IPC_STRUCT_TRAITS_MEMBER(hinting) | 300 IPC_STRUCT_TRAITS_MEMBER(hinting) |
| 301 IPC_STRUCT_TRAITS_MEMBER(use_autohinter) |
| 302 IPC_STRUCT_TRAITS_MEMBER(use_bitmaps) |
| 301 IPC_STRUCT_TRAITS_MEMBER(subpixel_rendering) | 303 IPC_STRUCT_TRAITS_MEMBER(subpixel_rendering) |
| 302 IPC_STRUCT_TRAITS_MEMBER(use_subpixel_positioning) | 304 IPC_STRUCT_TRAITS_MEMBER(use_subpixel_positioning) |
| 303 IPC_STRUCT_TRAITS_MEMBER(focus_ring_color) | 305 IPC_STRUCT_TRAITS_MEMBER(focus_ring_color) |
| 304 IPC_STRUCT_TRAITS_MEMBER(thumb_active_color) | 306 IPC_STRUCT_TRAITS_MEMBER(thumb_active_color) |
| 305 IPC_STRUCT_TRAITS_MEMBER(thumb_inactive_color) | 307 IPC_STRUCT_TRAITS_MEMBER(thumb_inactive_color) |
| 306 IPC_STRUCT_TRAITS_MEMBER(track_color) | 308 IPC_STRUCT_TRAITS_MEMBER(track_color) |
| 307 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) | 309 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) |
| 308 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) | 310 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) |
| 309 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) | 311 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) |
| 310 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) | 312 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) |
| (...skipping 1812 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2123 // (according to the value of is_hung). The browser can give the user the | 2125 // (according to the value of is_hung). The browser can give the user the |
| 2124 // option of killing the plugin. | 2126 // option of killing the plugin. |
| 2125 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2127 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
| 2126 int /* plugin_child_id */, | 2128 int /* plugin_child_id */, |
| 2127 FilePath /* path */, | 2129 FilePath /* path */, |
| 2128 bool /* is_hung */) | 2130 bool /* is_hung */) |
| 2129 | 2131 |
| 2130 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2132 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
| 2131 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2133 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
| 2132 int /* orientation */) | 2134 int /* orientation */) |
| OLD | NEW |