| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 IPC_STRUCT_TRAITS_MEMBER(remote_fonts_enabled) | 138 IPC_STRUCT_TRAITS_MEMBER(remote_fonts_enabled) |
| 139 IPC_STRUCT_TRAITS_MEMBER(javascript_can_access_clipboard) | 139 IPC_STRUCT_TRAITS_MEMBER(javascript_can_access_clipboard) |
| 140 IPC_STRUCT_TRAITS_MEMBER(xslt_enabled) | 140 IPC_STRUCT_TRAITS_MEMBER(xslt_enabled) |
| 141 IPC_STRUCT_TRAITS_MEMBER(xss_auditor_enabled) | 141 IPC_STRUCT_TRAITS_MEMBER(xss_auditor_enabled) |
| 142 IPC_STRUCT_TRAITS_MEMBER(dns_prefetching_enabled) | 142 IPC_STRUCT_TRAITS_MEMBER(dns_prefetching_enabled) |
| 143 IPC_STRUCT_TRAITS_MEMBER(data_saver_enabled) | 143 IPC_STRUCT_TRAITS_MEMBER(data_saver_enabled) |
| 144 IPC_STRUCT_TRAITS_MEMBER(local_storage_enabled) | 144 IPC_STRUCT_TRAITS_MEMBER(local_storage_enabled) |
| 145 IPC_STRUCT_TRAITS_MEMBER(databases_enabled) | 145 IPC_STRUCT_TRAITS_MEMBER(databases_enabled) |
| 146 IPC_STRUCT_TRAITS_MEMBER(application_cache_enabled) | 146 IPC_STRUCT_TRAITS_MEMBER(application_cache_enabled) |
| 147 IPC_STRUCT_TRAITS_MEMBER(tabs_to_links) | 147 IPC_STRUCT_TRAITS_MEMBER(tabs_to_links) |
| 148 IPC_STRUCT_TRAITS_MEMBER(history_entry_requires_user_gesture) |
| 148 IPC_STRUCT_TRAITS_MEMBER(hyperlink_auditing_enabled) | 149 IPC_STRUCT_TRAITS_MEMBER(hyperlink_auditing_enabled) |
| 149 IPC_STRUCT_TRAITS_MEMBER(allow_universal_access_from_file_urls) | 150 IPC_STRUCT_TRAITS_MEMBER(allow_universal_access_from_file_urls) |
| 150 IPC_STRUCT_TRAITS_MEMBER(allow_file_access_from_file_urls) | 151 IPC_STRUCT_TRAITS_MEMBER(allow_file_access_from_file_urls) |
| 151 IPC_STRUCT_TRAITS_MEMBER(experimental_webgl_enabled) | 152 IPC_STRUCT_TRAITS_MEMBER(experimental_webgl_enabled) |
| 152 IPC_STRUCT_TRAITS_MEMBER(pepper_3d_enabled) | 153 IPC_STRUCT_TRAITS_MEMBER(pepper_3d_enabled) |
| 153 IPC_STRUCT_TRAITS_MEMBER(inert_visual_viewport) | 154 IPC_STRUCT_TRAITS_MEMBER(inert_visual_viewport) |
| 154 IPC_STRUCT_TRAITS_MEMBER(record_whole_document) | 155 IPC_STRUCT_TRAITS_MEMBER(record_whole_document) |
| 155 IPC_STRUCT_TRAITS_MEMBER(pinch_overlay_scrollbar_thickness) | 156 IPC_STRUCT_TRAITS_MEMBER(pinch_overlay_scrollbar_thickness) |
| 156 IPC_STRUCT_TRAITS_MEMBER(use_solid_color_scrollbars) | 157 IPC_STRUCT_TRAITS_MEMBER(use_solid_color_scrollbars) |
| 157 IPC_STRUCT_TRAITS_MEMBER(flash_3d_enabled) | 158 IPC_STRUCT_TRAITS_MEMBER(flash_3d_enabled) |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXTextAffinity, ui::AX_TEXT_AFFINITY_LAST) | 270 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXTextAffinity, ui::AX_TEXT_AFFINITY_LAST) |
| 270 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXEventFrom, ui::AX_EVENT_FROM_LAST) | 271 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXEventFrom, ui::AX_EVENT_FROM_LAST) |
| 271 | 272 |
| 272 IPC_STRUCT_TRAITS_BEGIN(ui::AXRelativeBounds) | 273 IPC_STRUCT_TRAITS_BEGIN(ui::AXRelativeBounds) |
| 273 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) | 274 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) |
| 274 IPC_STRUCT_TRAITS_MEMBER(bounds) | 275 IPC_STRUCT_TRAITS_MEMBER(bounds) |
| 275 IPC_STRUCT_TRAITS_MEMBER(transform) | 276 IPC_STRUCT_TRAITS_MEMBER(transform) |
| 276 IPC_STRUCT_TRAITS_END() | 277 IPC_STRUCT_TRAITS_END() |
| 277 | 278 |
| 278 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ | 279 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ |
| OLD | NEW |