| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) | 123 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) |
| 124 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size) | 124 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size) |
| 125 IPC_STRUCT_TRAITS_MEMBER(default_encoding) | 125 IPC_STRUCT_TRAITS_MEMBER(default_encoding) |
| 126 IPC_STRUCT_TRAITS_MEMBER(context_menu_on_mouse_up) | 126 IPC_STRUCT_TRAITS_MEMBER(context_menu_on_mouse_up) |
| 127 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) | 127 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) |
| 128 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) | 128 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) |
| 129 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) | 129 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) |
| 130 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) | 130 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) |
| 131 IPC_STRUCT_TRAITS_MEMBER(images_enabled) | 131 IPC_STRUCT_TRAITS_MEMBER(images_enabled) |
| 132 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) | 132 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) |
| 133 IPC_STRUCT_TRAITS_MEMBER(encrypted_media_enabled) |
| 133 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled) | 134 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled) |
| 134 IPC_STRUCT_TRAITS_MEMBER(shrinks_standalone_images_to_fit) | 135 IPC_STRUCT_TRAITS_MEMBER(shrinks_standalone_images_to_fit) |
| 135 IPC_STRUCT_TRAITS_MEMBER(text_areas_are_resizable) | 136 IPC_STRUCT_TRAITS_MEMBER(text_areas_are_resizable) |
| 136 IPC_STRUCT_TRAITS_MEMBER(allow_scripts_to_close_windows) | 137 IPC_STRUCT_TRAITS_MEMBER(allow_scripts_to_close_windows) |
| 137 IPC_STRUCT_TRAITS_MEMBER(remote_fonts_enabled) | 138 IPC_STRUCT_TRAITS_MEMBER(remote_fonts_enabled) |
| 138 IPC_STRUCT_TRAITS_MEMBER(javascript_can_access_clipboard) | 139 IPC_STRUCT_TRAITS_MEMBER(javascript_can_access_clipboard) |
| 139 IPC_STRUCT_TRAITS_MEMBER(xslt_enabled) | 140 IPC_STRUCT_TRAITS_MEMBER(xslt_enabled) |
| 140 IPC_STRUCT_TRAITS_MEMBER(xss_auditor_enabled) | 141 IPC_STRUCT_TRAITS_MEMBER(xss_auditor_enabled) |
| 141 IPC_STRUCT_TRAITS_MEMBER(dns_prefetching_enabled) | 142 IPC_STRUCT_TRAITS_MEMBER(dns_prefetching_enabled) |
| 142 IPC_STRUCT_TRAITS_MEMBER(data_saver_enabled) | 143 IPC_STRUCT_TRAITS_MEMBER(data_saver_enabled) |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXTextAffinity, ui::AX_TEXT_AFFINITY_LAST) | 282 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXTextAffinity, ui::AX_TEXT_AFFINITY_LAST) |
| 282 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXEventFrom, ui::AX_EVENT_FROM_LAST) | 283 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXEventFrom, ui::AX_EVENT_FROM_LAST) |
| 283 | 284 |
| 284 IPC_STRUCT_TRAITS_BEGIN(ui::AXRelativeBounds) | 285 IPC_STRUCT_TRAITS_BEGIN(ui::AXRelativeBounds) |
| 285 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) | 286 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) |
| 286 IPC_STRUCT_TRAITS_MEMBER(bounds) | 287 IPC_STRUCT_TRAITS_MEMBER(bounds) |
| 287 IPC_STRUCT_TRAITS_MEMBER(transform) | 288 IPC_STRUCT_TRAITS_MEMBER(transform) |
| 288 IPC_STRUCT_TRAITS_END() | 289 IPC_STRUCT_TRAITS_END() |
| 289 | 290 |
| 290 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ | 291 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ |
| OLD | NEW |