| 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(history_entry_requires_user_gesture) |
| 149 IPC_STRUCT_TRAITS_MEMBER(hyperlink_auditing_enabled) | 149 IPC_STRUCT_TRAITS_MEMBER(hyperlink_auditing_enabled) |
| 150 IPC_STRUCT_TRAITS_MEMBER(allow_universal_access_from_file_urls) | 150 IPC_STRUCT_TRAITS_MEMBER(allow_universal_access_from_file_urls) |
| 151 IPC_STRUCT_TRAITS_MEMBER(allow_file_access_from_file_urls) | 151 IPC_STRUCT_TRAITS_MEMBER(allow_file_access_from_file_urls) |
| 152 IPC_STRUCT_TRAITS_MEMBER(disable_caret_blinking) |
| 152 IPC_STRUCT_TRAITS_MEMBER(experimental_webgl_enabled) | 153 IPC_STRUCT_TRAITS_MEMBER(experimental_webgl_enabled) |
| 153 IPC_STRUCT_TRAITS_MEMBER(pepper_3d_enabled) | 154 IPC_STRUCT_TRAITS_MEMBER(pepper_3d_enabled) |
| 154 IPC_STRUCT_TRAITS_MEMBER(inert_visual_viewport) | 155 IPC_STRUCT_TRAITS_MEMBER(inert_visual_viewport) |
| 155 IPC_STRUCT_TRAITS_MEMBER(record_whole_document) | 156 IPC_STRUCT_TRAITS_MEMBER(record_whole_document) |
| 156 IPC_STRUCT_TRAITS_MEMBER(pinch_overlay_scrollbar_thickness) | 157 IPC_STRUCT_TRAITS_MEMBER(pinch_overlay_scrollbar_thickness) |
| 157 IPC_STRUCT_TRAITS_MEMBER(use_solid_color_scrollbars) | 158 IPC_STRUCT_TRAITS_MEMBER(use_solid_color_scrollbars) |
| 158 IPC_STRUCT_TRAITS_MEMBER(flash_3d_enabled) | 159 IPC_STRUCT_TRAITS_MEMBER(flash_3d_enabled) |
| 159 IPC_STRUCT_TRAITS_MEMBER(flash_stage3d_enabled) | 160 IPC_STRUCT_TRAITS_MEMBER(flash_stage3d_enabled) |
| 160 IPC_STRUCT_TRAITS_MEMBER(flash_stage3d_baseline_enabled) | 161 IPC_STRUCT_TRAITS_MEMBER(flash_stage3d_baseline_enabled) |
| 161 IPC_STRUCT_TRAITS_MEMBER(privileged_webgl_extensions_enabled) | 162 IPC_STRUCT_TRAITS_MEMBER(privileged_webgl_extensions_enabled) |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXTextAffinity, ui::AX_TEXT_AFFINITY_LAST) | 272 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXTextAffinity, ui::AX_TEXT_AFFINITY_LAST) |
| 272 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXEventFrom, ui::AX_EVENT_FROM_LAST) | 273 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXEventFrom, ui::AX_EVENT_FROM_LAST) |
| 273 | 274 |
| 274 IPC_STRUCT_TRAITS_BEGIN(ui::AXRelativeBounds) | 275 IPC_STRUCT_TRAITS_BEGIN(ui::AXRelativeBounds) |
| 275 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) | 276 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) |
| 276 IPC_STRUCT_TRAITS_MEMBER(bounds) | 277 IPC_STRUCT_TRAITS_MEMBER(bounds) |
| 277 IPC_STRUCT_TRAITS_MEMBER(transform) | 278 IPC_STRUCT_TRAITS_MEMBER(transform) |
| 278 IPC_STRUCT_TRAITS_END() | 279 IPC_STRUCT_TRAITS_END() |
| 279 | 280 |
| 280 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ | 281 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ |
| OLD | NEW |