| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 IPC_ENUM_TRAITS_MAX_VALUE(content::V8CacheOptions, | 45 IPC_ENUM_TRAITS_MAX_VALUE(content::V8CacheOptions, |
| 46 content::V8_CACHE_OPTIONS_LAST) | 46 content::V8_CACHE_OPTIONS_LAST) |
| 47 IPC_ENUM_TRAITS_MAX_VALUE(content::V8ScriptStreamingMode, | 47 IPC_ENUM_TRAITS_MAX_VALUE(content::V8ScriptStreamingMode, |
| 48 content::V8_SCRIPT_STREAMING_MODE_LAST) | 48 content::V8_SCRIPT_STREAMING_MODE_LAST) |
| 49 IPC_ENUM_TRAITS_MIN_MAX_VALUE(ui::PointerType, | 49 IPC_ENUM_TRAITS_MIN_MAX_VALUE(ui::PointerType, |
| 50 ui::POINTER_TYPE_FIRST, | 50 ui::POINTER_TYPE_FIRST, |
| 51 ui::POINTER_TYPE_LAST) | 51 ui::POINTER_TYPE_LAST) |
| 52 IPC_ENUM_TRAITS_MIN_MAX_VALUE(ui::HoverType, | 52 IPC_ENUM_TRAITS_MIN_MAX_VALUE(ui::HoverType, |
| 53 ui::HOVER_TYPE_FIRST, | 53 ui::HOVER_TYPE_FIRST, |
| 54 ui::HOVER_TYPE_LAST) | 54 ui::HOVER_TYPE_LAST) |
| 55 IPC_ENUM_TRAITS_MIN_MAX_VALUE(content::ImageAnimationPolicy, |
| 56 content::IMAGE_ANIMATION_POLICY_ALLOWED, |
| 57 content::IMAGE_ANIMATION_POLICY_NO_ANIMATION) |
| 55 | 58 |
| 56 IPC_STRUCT_TRAITS_BEGIN(blink::WebPoint) | 59 IPC_STRUCT_TRAITS_BEGIN(blink::WebPoint) |
| 57 IPC_STRUCT_TRAITS_MEMBER(x) | 60 IPC_STRUCT_TRAITS_MEMBER(x) |
| 58 IPC_STRUCT_TRAITS_MEMBER(y) | 61 IPC_STRUCT_TRAITS_MEMBER(y) |
| 59 IPC_STRUCT_TRAITS_END() | 62 IPC_STRUCT_TRAITS_END() |
| 60 | 63 |
| 61 IPC_STRUCT_TRAITS_BEGIN(blink::WebRect) | 64 IPC_STRUCT_TRAITS_BEGIN(blink::WebRect) |
| 62 IPC_STRUCT_TRAITS_MEMBER(x) | 65 IPC_STRUCT_TRAITS_MEMBER(x) |
| 63 IPC_STRUCT_TRAITS_MEMBER(y) | 66 IPC_STRUCT_TRAITS_MEMBER(y) |
| 64 IPC_STRUCT_TRAITS_MEMBER(width) | 67 IPC_STRUCT_TRAITS_MEMBER(width) |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 IPC_STRUCT_TRAITS_MEMBER(initialize_at_minimum_page_scale) | 191 IPC_STRUCT_TRAITS_MEMBER(initialize_at_minimum_page_scale) |
| 189 IPC_STRUCT_TRAITS_MEMBER(smart_insert_delete_enabled) | 192 IPC_STRUCT_TRAITS_MEMBER(smart_insert_delete_enabled) |
| 190 IPC_STRUCT_TRAITS_MEMBER(cookie_enabled) | 193 IPC_STRUCT_TRAITS_MEMBER(cookie_enabled) |
| 191 IPC_STRUCT_TRAITS_MEMBER(navigate_on_drag_drop) | 194 IPC_STRUCT_TRAITS_MEMBER(navigate_on_drag_drop) |
| 192 IPC_STRUCT_TRAITS_MEMBER(spatial_navigation_enabled) | 195 IPC_STRUCT_TRAITS_MEMBER(spatial_navigation_enabled) |
| 193 IPC_STRUCT_TRAITS_MEMBER(v8_cache_options) | 196 IPC_STRUCT_TRAITS_MEMBER(v8_cache_options) |
| 194 IPC_STRUCT_TRAITS_MEMBER(v8_script_streaming_enabled) | 197 IPC_STRUCT_TRAITS_MEMBER(v8_script_streaming_enabled) |
| 195 IPC_STRUCT_TRAITS_MEMBER(v8_script_streaming_mode) | 198 IPC_STRUCT_TRAITS_MEMBER(v8_script_streaming_mode) |
| 196 IPC_STRUCT_TRAITS_MEMBER(slimming_paint_enabled) | 199 IPC_STRUCT_TRAITS_MEMBER(slimming_paint_enabled) |
| 197 IPC_STRUCT_TRAITS_MEMBER(pepper_accelerated_video_decode_enabled) | 200 IPC_STRUCT_TRAITS_MEMBER(pepper_accelerated_video_decode_enabled) |
| 201 IPC_STRUCT_TRAITS_MEMBER(animation_policy) |
| 198 #if defined(OS_ANDROID) | 202 #if defined(OS_ANDROID) |
| 199 IPC_STRUCT_TRAITS_MEMBER(text_autosizing_enabled) | 203 IPC_STRUCT_TRAITS_MEMBER(text_autosizing_enabled) |
| 200 IPC_STRUCT_TRAITS_MEMBER(font_scale_factor) | 204 IPC_STRUCT_TRAITS_MEMBER(font_scale_factor) |
| 201 IPC_STRUCT_TRAITS_MEMBER(device_scale_adjustment) | 205 IPC_STRUCT_TRAITS_MEMBER(device_scale_adjustment) |
| 202 IPC_STRUCT_TRAITS_MEMBER(force_enable_zoom) | 206 IPC_STRUCT_TRAITS_MEMBER(force_enable_zoom) |
| 203 IPC_STRUCT_TRAITS_MEMBER(fullscreen_supported) | 207 IPC_STRUCT_TRAITS_MEMBER(fullscreen_supported) |
| 204 IPC_STRUCT_TRAITS_MEMBER(double_tap_to_zoom_enabled) | 208 IPC_STRUCT_TRAITS_MEMBER(double_tap_to_zoom_enabled) |
| 205 IPC_STRUCT_TRAITS_MEMBER(user_gesture_required_for_media_playback) | 209 IPC_STRUCT_TRAITS_MEMBER(user_gesture_required_for_media_playback) |
| 206 IPC_STRUCT_TRAITS_MEMBER(default_video_poster_url) | 210 IPC_STRUCT_TRAITS_MEMBER(default_video_poster_url) |
| 207 IPC_STRUCT_TRAITS_MEMBER(support_deprecated_target_density_dpi) | 211 IPC_STRUCT_TRAITS_MEMBER(support_deprecated_target_density_dpi) |
| (...skipping 24 matching lines...) Expand all Loading... |
| 232 IPC_STRUCT_TRAITS_MEMBER(statusBarVisible) | 236 IPC_STRUCT_TRAITS_MEMBER(statusBarVisible) |
| 233 IPC_STRUCT_TRAITS_MEMBER(toolBarVisible) | 237 IPC_STRUCT_TRAITS_MEMBER(toolBarVisible) |
| 234 IPC_STRUCT_TRAITS_MEMBER(locationBarVisible) | 238 IPC_STRUCT_TRAITS_MEMBER(locationBarVisible) |
| 235 IPC_STRUCT_TRAITS_MEMBER(scrollbarsVisible) | 239 IPC_STRUCT_TRAITS_MEMBER(scrollbarsVisible) |
| 236 IPC_STRUCT_TRAITS_MEMBER(resizable) | 240 IPC_STRUCT_TRAITS_MEMBER(resizable) |
| 237 IPC_STRUCT_TRAITS_MEMBER(fullscreen) | 241 IPC_STRUCT_TRAITS_MEMBER(fullscreen) |
| 238 IPC_STRUCT_TRAITS_MEMBER(dialog) | 242 IPC_STRUCT_TRAITS_MEMBER(dialog) |
| 239 IPC_STRUCT_TRAITS_END() | 243 IPC_STRUCT_TRAITS_END() |
| 240 | 244 |
| 241 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ | 245 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ |
| OLD | NEW |