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(hinting) | 289 IPC_STRUCT_TRAITS_MEMBER(hinting) |
290 IPC_STRUCT_TRAITS_MEMBER(subpixel_rendering) | 290 IPC_STRUCT_TRAITS_MEMBER(subpixel_rendering) |
291 IPC_STRUCT_TRAITS_MEMBER(focus_ring_color) | 291 IPC_STRUCT_TRAITS_MEMBER(focus_ring_color) |
292 IPC_STRUCT_TRAITS_MEMBER(thumb_active_color) | 292 IPC_STRUCT_TRAITS_MEMBER(thumb_active_color) |
293 IPC_STRUCT_TRAITS_MEMBER(thumb_inactive_color) | 293 IPC_STRUCT_TRAITS_MEMBER(thumb_inactive_color) |
294 IPC_STRUCT_TRAITS_MEMBER(track_color) | 294 IPC_STRUCT_TRAITS_MEMBER(track_color) |
295 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) | 295 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) |
296 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) | 296 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) |
297 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) | 297 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) |
298 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) | 298 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) |
299 IPC_STRUCT_TRAITS_MEMBER(browser_handles_top_level_requests) | 299 IPC_STRUCT_TRAITS_MEMBER(browser_handles_non_local_top_level_requests) |
300 IPC_STRUCT_TRAITS_MEMBER(browser_handles_all_requests) | 300 IPC_STRUCT_TRAITS_MEMBER(browser_handles_all_top_level_requests) |
301 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) | 301 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) |
302 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) | 302 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) |
303 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) | 303 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) |
304 IPC_STRUCT_TRAITS_END() | 304 IPC_STRUCT_TRAITS_END() |
305 | 305 |
306 IPC_STRUCT_TRAITS_BEGIN(content::SSLStatus) | 306 IPC_STRUCT_TRAITS_BEGIN(content::SSLStatus) |
307 IPC_STRUCT_TRAITS_MEMBER(security_style) | 307 IPC_STRUCT_TRAITS_MEMBER(security_style) |
308 IPC_STRUCT_TRAITS_MEMBER(cert_id) | 308 IPC_STRUCT_TRAITS_MEMBER(cert_id) |
309 IPC_STRUCT_TRAITS_MEMBER(cert_status) | 309 IPC_STRUCT_TRAITS_MEMBER(cert_status) |
310 IPC_STRUCT_TRAITS_MEMBER(security_bits) | 310 IPC_STRUCT_TRAITS_MEMBER(security_bits) |
(...skipping 1743 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2054 // (according to the value of is_hung). The browser can give the user the | 2054 // (according to the value of is_hung). The browser can give the user the |
2055 // option of killing the plugin. | 2055 // option of killing the plugin. |
2056 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2056 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
2057 int /* plugin_child_id */, | 2057 int /* plugin_child_id */, |
2058 FilePath /* path */, | 2058 FilePath /* path */, |
2059 bool /* is_hung */) | 2059 bool /* is_hung */) |
2060 | 2060 |
2061 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2061 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
2062 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2062 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
2063 int /* orientation */) | 2063 int /* orientation */) |
OLD | NEW |