| 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 IPC_STRUCT_TRAITS_MEMBER(expensive_background_throttling_max_budget) | 216 IPC_STRUCT_TRAITS_MEMBER(expensive_background_throttling_max_budget) |
| 217 IPC_STRUCT_TRAITS_MEMBER(expensive_background_throttling_max_delay) | 217 IPC_STRUCT_TRAITS_MEMBER(expensive_background_throttling_max_delay) |
| 218 #if defined(OS_ANDROID) | 218 #if defined(OS_ANDROID) |
| 219 IPC_STRUCT_TRAITS_MEMBER(text_autosizing_enabled) | 219 IPC_STRUCT_TRAITS_MEMBER(text_autosizing_enabled) |
| 220 IPC_STRUCT_TRAITS_MEMBER(font_scale_factor) | 220 IPC_STRUCT_TRAITS_MEMBER(font_scale_factor) |
| 221 IPC_STRUCT_TRAITS_MEMBER(device_scale_adjustment) | 221 IPC_STRUCT_TRAITS_MEMBER(device_scale_adjustment) |
| 222 IPC_STRUCT_TRAITS_MEMBER(force_enable_zoom) | 222 IPC_STRUCT_TRAITS_MEMBER(force_enable_zoom) |
| 223 IPC_STRUCT_TRAITS_MEMBER(fullscreen_supported) | 223 IPC_STRUCT_TRAITS_MEMBER(fullscreen_supported) |
| 224 IPC_STRUCT_TRAITS_MEMBER(double_tap_to_zoom_enabled) | 224 IPC_STRUCT_TRAITS_MEMBER(double_tap_to_zoom_enabled) |
| 225 IPC_STRUCT_TRAITS_MEMBER(user_gesture_required_for_media_playback) | 225 IPC_STRUCT_TRAITS_MEMBER(user_gesture_required_for_media_playback) |
| 226 IPC_STRUCT_TRAITS_MEMBER(media_playback_gesture_whitelist_scope) |
| 226 IPC_STRUCT_TRAITS_MEMBER(default_video_poster_url) | 227 IPC_STRUCT_TRAITS_MEMBER(default_video_poster_url) |
| 227 IPC_STRUCT_TRAITS_MEMBER(support_deprecated_target_density_dpi) | 228 IPC_STRUCT_TRAITS_MEMBER(support_deprecated_target_density_dpi) |
| 228 IPC_STRUCT_TRAITS_MEMBER(use_legacy_background_size_shorthand_behavior) | 229 IPC_STRUCT_TRAITS_MEMBER(use_legacy_background_size_shorthand_behavior) |
| 229 IPC_STRUCT_TRAITS_MEMBER(wide_viewport_quirk) | 230 IPC_STRUCT_TRAITS_MEMBER(wide_viewport_quirk) |
| 230 IPC_STRUCT_TRAITS_MEMBER(use_wide_viewport) | 231 IPC_STRUCT_TRAITS_MEMBER(use_wide_viewport) |
| 231 IPC_STRUCT_TRAITS_MEMBER(force_zero_layout_height) | 232 IPC_STRUCT_TRAITS_MEMBER(force_zero_layout_height) |
| 232 IPC_STRUCT_TRAITS_MEMBER(viewport_meta_layout_size_quirk) | 233 IPC_STRUCT_TRAITS_MEMBER(viewport_meta_layout_size_quirk) |
| 233 IPC_STRUCT_TRAITS_MEMBER(viewport_meta_merge_content_quirk) | 234 IPC_STRUCT_TRAITS_MEMBER(viewport_meta_merge_content_quirk) |
| 234 IPC_STRUCT_TRAITS_MEMBER(viewport_meta_non_user_scalable_quirk) | 235 IPC_STRUCT_TRAITS_MEMBER(viewport_meta_non_user_scalable_quirk) |
| 235 IPC_STRUCT_TRAITS_MEMBER(viewport_meta_zero_values_quirk) | 236 IPC_STRUCT_TRAITS_MEMBER(viewport_meta_zero_values_quirk) |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXTextAffinity, ui::AX_TEXT_AFFINITY_LAST) | 283 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXTextAffinity, ui::AX_TEXT_AFFINITY_LAST) |
| 283 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXEventFrom, ui::AX_EVENT_FROM_LAST) | 284 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXEventFrom, ui::AX_EVENT_FROM_LAST) |
| 284 | 285 |
| 285 IPC_STRUCT_TRAITS_BEGIN(ui::AXRelativeBounds) | 286 IPC_STRUCT_TRAITS_BEGIN(ui::AXRelativeBounds) |
| 286 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) | 287 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) |
| 287 IPC_STRUCT_TRAITS_MEMBER(bounds) | 288 IPC_STRUCT_TRAITS_MEMBER(bounds) |
| 288 IPC_STRUCT_TRAITS_MEMBER(transform) | 289 IPC_STRUCT_TRAITS_MEMBER(transform) |
| 289 IPC_STRUCT_TRAITS_END() | 290 IPC_STRUCT_TRAITS_END() |
| 290 | 291 |
| 291 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ | 292 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ |
| OLD | NEW |