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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 IPC_STRUCT_TRAITS_MEMBER(default_encoding) | 136 IPC_STRUCT_TRAITS_MEMBER(default_encoding) |
137 IPC_STRUCT_TRAITS_MEMBER(context_menu_on_mouse_up) | 137 IPC_STRUCT_TRAITS_MEMBER(context_menu_on_mouse_up) |
138 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) | 138 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) |
139 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) | 139 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) |
140 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) | 140 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) |
141 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) | 141 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) |
142 IPC_STRUCT_TRAITS_MEMBER(images_enabled) | 142 IPC_STRUCT_TRAITS_MEMBER(images_enabled) |
143 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) | 143 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) |
144 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled) | 144 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled) |
145 IPC_STRUCT_TRAITS_MEMBER(shrinks_standalone_images_to_fit) | 145 IPC_STRUCT_TRAITS_MEMBER(shrinks_standalone_images_to_fit) |
146 IPC_STRUCT_TRAITS_MEMBER(uses_universal_detector) | |
147 IPC_STRUCT_TRAITS_MEMBER(text_areas_are_resizable) | 146 IPC_STRUCT_TRAITS_MEMBER(text_areas_are_resizable) |
148 IPC_STRUCT_TRAITS_MEMBER(allow_scripts_to_close_windows) | 147 IPC_STRUCT_TRAITS_MEMBER(allow_scripts_to_close_windows) |
149 IPC_STRUCT_TRAITS_MEMBER(remote_fonts_enabled) | 148 IPC_STRUCT_TRAITS_MEMBER(remote_fonts_enabled) |
150 IPC_STRUCT_TRAITS_MEMBER(javascript_can_access_clipboard) | 149 IPC_STRUCT_TRAITS_MEMBER(javascript_can_access_clipboard) |
151 IPC_STRUCT_TRAITS_MEMBER(xslt_enabled) | 150 IPC_STRUCT_TRAITS_MEMBER(xslt_enabled) |
152 IPC_STRUCT_TRAITS_MEMBER(xss_auditor_enabled) | 151 IPC_STRUCT_TRAITS_MEMBER(xss_auditor_enabled) |
153 IPC_STRUCT_TRAITS_MEMBER(dns_prefetching_enabled) | 152 IPC_STRUCT_TRAITS_MEMBER(dns_prefetching_enabled) |
154 IPC_STRUCT_TRAITS_MEMBER(data_saver_enabled) | 153 IPC_STRUCT_TRAITS_MEMBER(data_saver_enabled) |
155 IPC_STRUCT_TRAITS_MEMBER(local_storage_enabled) | 154 IPC_STRUCT_TRAITS_MEMBER(local_storage_enabled) |
156 IPC_STRUCT_TRAITS_MEMBER(databases_enabled) | 155 IPC_STRUCT_TRAITS_MEMBER(databases_enabled) |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXStringAttribute, ui::AX_STRING_ATTRIBUTE_LAST) | 279 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXStringAttribute, ui::AX_STRING_ATTRIBUTE_LAST) |
281 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXTextAffinity, ui::AX_TEXT_AFFINITY_LAST) | 280 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXTextAffinity, ui::AX_TEXT_AFFINITY_LAST) |
282 | 281 |
283 IPC_STRUCT_TRAITS_BEGIN(ui::AXRelativeBounds) | 282 IPC_STRUCT_TRAITS_BEGIN(ui::AXRelativeBounds) |
284 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) | 283 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) |
285 IPC_STRUCT_TRAITS_MEMBER(bounds) | 284 IPC_STRUCT_TRAITS_MEMBER(bounds) |
286 IPC_STRUCT_TRAITS_MEMBER(transform) | 285 IPC_STRUCT_TRAITS_MEMBER(transform) |
287 IPC_STRUCT_TRAITS_END() | 286 IPC_STRUCT_TRAITS_END() |
288 | 287 |
289 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ | 288 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ |
OLD | NEW |