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(subpixel_rendering) | 291 IPC_STRUCT_TRAITS_MEMBER(subpixel_rendering) |
292 IPC_STRUCT_TRAITS_MEMBER(focus_ring_color) | 292 IPC_STRUCT_TRAITS_MEMBER(focus_ring_color) |
293 IPC_STRUCT_TRAITS_MEMBER(thumb_active_color) | 293 IPC_STRUCT_TRAITS_MEMBER(thumb_active_color) |
294 IPC_STRUCT_TRAITS_MEMBER(thumb_inactive_color) | 294 IPC_STRUCT_TRAITS_MEMBER(thumb_inactive_color) |
295 IPC_STRUCT_TRAITS_MEMBER(track_color) | 295 IPC_STRUCT_TRAITS_MEMBER(track_color) |
296 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) | 296 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) |
297 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) | 297 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) |
298 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) | 298 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) |
299 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) | 299 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) |
300 IPC_STRUCT_TRAITS_MEMBER(browser_handles_top_level_requests) | 300 IPC_STRUCT_TRAITS_MEMBER(browser_handles_top_level_requests) |
301 IPC_STRUCT_TRAITS_MEMBER(browser_handles_all_requests) | 301 IPC_STRUCT_TRAITS_MEMBER(browser_handles_all_top_level_or_non_local_requests) |
302 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) | 302 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) |
303 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) | 303 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) |
304 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) | 304 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) |
305 IPC_STRUCT_TRAITS_END() | 305 IPC_STRUCT_TRAITS_END() |
306 | 306 |
307 IPC_STRUCT_TRAITS_BEGIN(content::SSLStatus) | 307 IPC_STRUCT_TRAITS_BEGIN(content::SSLStatus) |
308 IPC_STRUCT_TRAITS_MEMBER(security_style) | 308 IPC_STRUCT_TRAITS_MEMBER(security_style) |
309 IPC_STRUCT_TRAITS_MEMBER(cert_id) | 309 IPC_STRUCT_TRAITS_MEMBER(cert_id) |
310 IPC_STRUCT_TRAITS_MEMBER(cert_status) | 310 IPC_STRUCT_TRAITS_MEMBER(cert_status) |
311 IPC_STRUCT_TRAITS_MEMBER(security_bits) | 311 IPC_STRUCT_TRAITS_MEMBER(security_bits) |
(...skipping 1716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2028 int /* automation_id */) | 2028 int /* automation_id */) |
2029 | 2029 |
2030 // Sent to the browser when the renderer detects it is blocked on a pepper | 2030 // Sent to the browser when the renderer detects it is blocked on a pepper |
2031 // plugin message for too long. This is also sent when it becomes unhung | 2031 // plugin message for too long. This is also sent when it becomes unhung |
2032 // (according to the value of is_hung). The browser can give the user the | 2032 // (according to the value of is_hung). The browser can give the user the |
2033 // option of killing the plugin. | 2033 // option of killing the plugin. |
2034 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2034 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
2035 int /* plugin_child_id */, | 2035 int /* plugin_child_id */, |
2036 FilePath /* path */, | 2036 FilePath /* path */, |
2037 bool /* is_hung */) | 2037 bool /* is_hung */) |
OLD | NEW |