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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 IPC_STRUCT_TRAITS_MEMBER(possible_usernames) | 57 IPC_STRUCT_TRAITS_MEMBER(possible_usernames) |
58 IPC_STRUCT_TRAITS_MEMBER(password_element) | 58 IPC_STRUCT_TRAITS_MEMBER(password_element) |
59 IPC_STRUCT_TRAITS_MEMBER(password_value) | 59 IPC_STRUCT_TRAITS_MEMBER(password_value) |
60 IPC_STRUCT_TRAITS_MEMBER(password_autocomplete_set) | 60 IPC_STRUCT_TRAITS_MEMBER(password_autocomplete_set) |
61 IPC_STRUCT_TRAITS_MEMBER(old_password_element) | 61 IPC_STRUCT_TRAITS_MEMBER(old_password_element) |
62 IPC_STRUCT_TRAITS_MEMBER(old_password_value) | 62 IPC_STRUCT_TRAITS_MEMBER(old_password_value) |
63 IPC_STRUCT_TRAITS_MEMBER(ssl_valid) | 63 IPC_STRUCT_TRAITS_MEMBER(ssl_valid) |
64 IPC_STRUCT_TRAITS_MEMBER(preferred) | 64 IPC_STRUCT_TRAITS_MEMBER(preferred) |
65 IPC_STRUCT_TRAITS_MEMBER(blacklisted_by_user) | 65 IPC_STRUCT_TRAITS_MEMBER(blacklisted_by_user) |
66 IPC_STRUCT_TRAITS_MEMBER(type) | 66 IPC_STRUCT_TRAITS_MEMBER(type) |
| 67 IPC_STRUCT_TRAITS_MEMBER(times_used) |
67 IPC_STRUCT_TRAITS_END() | 68 IPC_STRUCT_TRAITS_END() |
68 | 69 |
69 IPC_STRUCT_TRAITS_BEGIN(content::SSLStatus) | 70 IPC_STRUCT_TRAITS_BEGIN(content::SSLStatus) |
70 IPC_STRUCT_TRAITS_MEMBER(security_style) | 71 IPC_STRUCT_TRAITS_MEMBER(security_style) |
71 IPC_STRUCT_TRAITS_MEMBER(cert_id) | 72 IPC_STRUCT_TRAITS_MEMBER(cert_id) |
72 IPC_STRUCT_TRAITS_MEMBER(cert_status) | 73 IPC_STRUCT_TRAITS_MEMBER(cert_status) |
73 IPC_STRUCT_TRAITS_MEMBER(security_bits) | 74 IPC_STRUCT_TRAITS_MEMBER(security_bits) |
74 IPC_STRUCT_TRAITS_MEMBER(connection_status) | 75 IPC_STRUCT_TRAITS_MEMBER(connection_status) |
75 IPC_STRUCT_TRAITS_MEMBER(content_status) | 76 IPC_STRUCT_TRAITS_MEMBER(content_status) |
76 IPC_STRUCT_TRAITS_END() | 77 IPC_STRUCT_TRAITS_END() |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 IPC_STRUCT_TRAITS_MEMBER(force_enable_zoom) | 201 IPC_STRUCT_TRAITS_MEMBER(force_enable_zoom) |
201 IPC_STRUCT_TRAITS_MEMBER(double_tap_to_zoom_enabled) | 202 IPC_STRUCT_TRAITS_MEMBER(double_tap_to_zoom_enabled) |
202 IPC_STRUCT_TRAITS_MEMBER(user_gesture_required_for_media_playback) | 203 IPC_STRUCT_TRAITS_MEMBER(user_gesture_required_for_media_playback) |
203 IPC_STRUCT_TRAITS_MEMBER(default_video_poster_url) | 204 IPC_STRUCT_TRAITS_MEMBER(default_video_poster_url) |
204 IPC_STRUCT_TRAITS_MEMBER(support_deprecated_target_density_dpi) | 205 IPC_STRUCT_TRAITS_MEMBER(support_deprecated_target_density_dpi) |
205 IPC_STRUCT_TRAITS_MEMBER(use_wide_viewport) | 206 IPC_STRUCT_TRAITS_MEMBER(use_wide_viewport) |
206 #endif | 207 #endif |
207 IPC_STRUCT_TRAITS_END() | 208 IPC_STRUCT_TRAITS_END() |
208 | 209 |
209 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ | 210 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ |
OLD | NEW |