| 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 // Singly or Multiply-included shared traits file depending on circumstances. | 5 // Singly or Multiply-included shared traits file depending on circumstances. |
| 6 // This allows the use of IPC serialization macros in more than one IPC message | 6 // This allows the use of IPC serialization macros in more than one IPC message |
| 7 // file. | 7 // file. |
| 8 #ifndef CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ | 8 #ifndef CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ |
| 9 #define CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ | 9 #define CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ |
| 10 | 10 |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 IPC_STRUCT_TRAITS_MEMBER(y) | 88 IPC_STRUCT_TRAITS_MEMBER(y) |
| 89 IPC_STRUCT_TRAITS_MEMBER(width) | 89 IPC_STRUCT_TRAITS_MEMBER(width) |
| 90 IPC_STRUCT_TRAITS_MEMBER(height) | 90 IPC_STRUCT_TRAITS_MEMBER(height) |
| 91 IPC_STRUCT_TRAITS_END() | 91 IPC_STRUCT_TRAITS_END() |
| 92 | 92 |
| 93 IPC_STRUCT_TRAITS_BEGIN(content::Referrer) | 93 IPC_STRUCT_TRAITS_BEGIN(content::Referrer) |
| 94 IPC_STRUCT_TRAITS_MEMBER(url) | 94 IPC_STRUCT_TRAITS_MEMBER(url) |
| 95 IPC_STRUCT_TRAITS_MEMBER(policy) | 95 IPC_STRUCT_TRAITS_MEMBER(policy) |
| 96 IPC_STRUCT_TRAITS_END() | 96 IPC_STRUCT_TRAITS_END() |
| 97 | 97 |
| 98 IPC_STRUCT_TRAITS_BEGIN(content::SSLStatus) | |
| 99 IPC_STRUCT_TRAITS_MEMBER(security_style) | |
| 100 IPC_STRUCT_TRAITS_MEMBER(cert_id) | |
| 101 IPC_STRUCT_TRAITS_MEMBER(cert_status) | |
| 102 IPC_STRUCT_TRAITS_MEMBER(security_bits) | |
| 103 IPC_STRUCT_TRAITS_MEMBER(connection_status) | |
| 104 IPC_STRUCT_TRAITS_MEMBER(content_status) | |
| 105 IPC_STRUCT_TRAITS_END() | |
| 106 | |
| 107 IPC_STRUCT_TRAITS_BEGIN(content::WebPluginMimeType) | 98 IPC_STRUCT_TRAITS_BEGIN(content::WebPluginMimeType) |
| 108 IPC_STRUCT_TRAITS_MEMBER(mime_type) | 99 IPC_STRUCT_TRAITS_MEMBER(mime_type) |
| 109 IPC_STRUCT_TRAITS_MEMBER(file_extensions) | 100 IPC_STRUCT_TRAITS_MEMBER(file_extensions) |
| 110 IPC_STRUCT_TRAITS_MEMBER(description) | 101 IPC_STRUCT_TRAITS_MEMBER(description) |
| 111 IPC_STRUCT_TRAITS_MEMBER(additional_param_names) | 102 IPC_STRUCT_TRAITS_MEMBER(additional_param_names) |
| 112 IPC_STRUCT_TRAITS_MEMBER(additional_param_values) | 103 IPC_STRUCT_TRAITS_MEMBER(additional_param_values) |
| 113 IPC_STRUCT_TRAITS_END() | 104 IPC_STRUCT_TRAITS_END() |
| 114 | 105 |
| 115 IPC_STRUCT_TRAITS_BEGIN(content::WebPluginInfo) | 106 IPC_STRUCT_TRAITS_BEGIN(content::WebPluginInfo) |
| 116 IPC_STRUCT_TRAITS_MEMBER(name) | 107 IPC_STRUCT_TRAITS_MEMBER(name) |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXStringAttribute, ui::AX_STRING_ATTRIBUTE_LAST) | 270 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXStringAttribute, ui::AX_STRING_ATTRIBUTE_LAST) |
| 280 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXTextAffinity, ui::AX_TEXT_AFFINITY_LAST) | 271 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXTextAffinity, ui::AX_TEXT_AFFINITY_LAST) |
| 281 | 272 |
| 282 IPC_STRUCT_TRAITS_BEGIN(ui::AXRelativeBounds) | 273 IPC_STRUCT_TRAITS_BEGIN(ui::AXRelativeBounds) |
| 283 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) | 274 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) |
| 284 IPC_STRUCT_TRAITS_MEMBER(bounds) | 275 IPC_STRUCT_TRAITS_MEMBER(bounds) |
| 285 IPC_STRUCT_TRAITS_MEMBER(transform) | 276 IPC_STRUCT_TRAITS_MEMBER(transform) |
| 286 IPC_STRUCT_TRAITS_END() | 277 IPC_STRUCT_TRAITS_END() |
| 287 | 278 |
| 288 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ | 279 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ |
| OLD | NEW |