| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) | 120 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) |
| 121 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) | 121 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) |
| 122 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) | 122 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) |
| 123 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) | 123 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) |
| 124 IPC_STRUCT_TRAITS_MEMBER(images_enabled) | 124 IPC_STRUCT_TRAITS_MEMBER(images_enabled) |
| 125 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) | 125 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) |
| 126 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled) | 126 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled) |
| 127 IPC_STRUCT_TRAITS_MEMBER(shrinks_standalone_images_to_fit) | 127 IPC_STRUCT_TRAITS_MEMBER(shrinks_standalone_images_to_fit) |
| 128 IPC_STRUCT_TRAITS_MEMBER(uses_universal_detector) | 128 IPC_STRUCT_TRAITS_MEMBER(uses_universal_detector) |
| 129 IPC_STRUCT_TRAITS_MEMBER(text_areas_are_resizable) | 129 IPC_STRUCT_TRAITS_MEMBER(text_areas_are_resizable) |
| 130 IPC_STRUCT_TRAITS_MEMBER(java_enabled) | |
| 131 IPC_STRUCT_TRAITS_MEMBER(allow_scripts_to_close_windows) | 130 IPC_STRUCT_TRAITS_MEMBER(allow_scripts_to_close_windows) |
| 132 IPC_STRUCT_TRAITS_MEMBER(remote_fonts_enabled) | 131 IPC_STRUCT_TRAITS_MEMBER(remote_fonts_enabled) |
| 133 IPC_STRUCT_TRAITS_MEMBER(javascript_can_access_clipboard) | 132 IPC_STRUCT_TRAITS_MEMBER(javascript_can_access_clipboard) |
| 134 IPC_STRUCT_TRAITS_MEMBER(xslt_enabled) | 133 IPC_STRUCT_TRAITS_MEMBER(xslt_enabled) |
| 135 IPC_STRUCT_TRAITS_MEMBER(xss_auditor_enabled) | 134 IPC_STRUCT_TRAITS_MEMBER(xss_auditor_enabled) |
| 136 IPC_STRUCT_TRAITS_MEMBER(dns_prefetching_enabled) | 135 IPC_STRUCT_TRAITS_MEMBER(dns_prefetching_enabled) |
| 137 IPC_STRUCT_TRAITS_MEMBER(local_storage_enabled) | 136 IPC_STRUCT_TRAITS_MEMBER(local_storage_enabled) |
| 138 IPC_STRUCT_TRAITS_MEMBER(databases_enabled) | 137 IPC_STRUCT_TRAITS_MEMBER(databases_enabled) |
| 139 IPC_STRUCT_TRAITS_MEMBER(application_cache_enabled) | 138 IPC_STRUCT_TRAITS_MEMBER(application_cache_enabled) |
| 140 IPC_STRUCT_TRAITS_MEMBER(tabs_to_links) | 139 IPC_STRUCT_TRAITS_MEMBER(tabs_to_links) |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXEvent, ui::AX_EVENT_LAST) | 251 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXEvent, ui::AX_EVENT_LAST) |
| 253 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXRole, ui::AX_ROLE_LAST) | 252 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXRole, ui::AX_ROLE_LAST) |
| 254 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXBoolAttribute, ui::AX_BOOL_ATTRIBUTE_LAST) | 253 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXBoolAttribute, ui::AX_BOOL_ATTRIBUTE_LAST) |
| 255 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXFloatAttribute, ui::AX_FLOAT_ATTRIBUTE_LAST) | 254 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXFloatAttribute, ui::AX_FLOAT_ATTRIBUTE_LAST) |
| 256 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXIntAttribute, ui::AX_INT_ATTRIBUTE_LAST) | 255 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXIntAttribute, ui::AX_INT_ATTRIBUTE_LAST) |
| 257 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXIntListAttribute, | 256 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXIntListAttribute, |
| 258 ui::AX_INT_LIST_ATTRIBUTE_LAST) | 257 ui::AX_INT_LIST_ATTRIBUTE_LAST) |
| 259 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXStringAttribute, ui::AX_STRING_ATTRIBUTE_LAST) | 258 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXStringAttribute, ui::AX_STRING_ATTRIBUTE_LAST) |
| 260 | 259 |
| 261 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ | 260 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ |
| OLD | NEW |