| 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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 IPC_STRUCT_TRAITS_MEMBER(availableRect) | 273 IPC_STRUCT_TRAITS_MEMBER(availableRect) |
| 274 IPC_STRUCT_TRAITS_END() | 274 IPC_STRUCT_TRAITS_END() |
| 275 | 275 |
| 276 IPC_STRUCT_TRAITS_BEGIN(WebPreferences) | 276 IPC_STRUCT_TRAITS_BEGIN(WebPreferences) |
| 277 IPC_STRUCT_TRAITS_MEMBER(standard_font_family) | 277 IPC_STRUCT_TRAITS_MEMBER(standard_font_family) |
| 278 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family) | 278 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family) |
| 279 IPC_STRUCT_TRAITS_MEMBER(serif_font_family) | 279 IPC_STRUCT_TRAITS_MEMBER(serif_font_family) |
| 280 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family) | 280 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family) |
| 281 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family) | 281 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family) |
| 282 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family) | 282 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family) |
| 283 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map) |
| 284 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map) |
| 285 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map) |
| 286 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map) |
| 287 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family_map) |
| 288 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family_map) |
| 283 IPC_STRUCT_TRAITS_MEMBER(default_font_size) | 289 IPC_STRUCT_TRAITS_MEMBER(default_font_size) |
| 284 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) | 290 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) |
| 285 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) | 291 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) |
| 286 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size) | 292 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size) |
| 287 IPC_STRUCT_TRAITS_MEMBER(default_encoding) | 293 IPC_STRUCT_TRAITS_MEMBER(default_encoding) |
| 288 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) | 294 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) |
| 289 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) | 295 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) |
| 290 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) | 296 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) |
| 291 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) | 297 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) |
| 292 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) | 298 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) |
| (...skipping 1779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2072 int32 /* complete status */) | 2078 int32 /* complete status */) |
| 2073 | 2079 |
| 2074 // Request updated information about the client firewall traversal policy. | 2080 // Request updated information about the client firewall traversal policy. |
| 2075 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message | 2081 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message |
| 2076 // being sent back. | 2082 // being sent back. |
| 2077 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal) | 2083 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal) |
| 2078 | 2084 |
| 2079 // Notifies the browser of an event occurring in the media pipeline. | 2085 // Notifies the browser of an event occurring in the media pipeline. |
| 2080 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent, | 2086 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent, |
| 2081 media::MediaLogEvent /* event */) | 2087 media::MediaLogEvent /* event */) |
| OLD | NEW |