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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) | 99 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) |
100 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size) | 100 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size) |
101 IPC_STRUCT_TRAITS_MEMBER(default_encoding) | 101 IPC_STRUCT_TRAITS_MEMBER(default_encoding) |
102 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) | 102 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) |
103 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) | 103 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) |
104 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) | 104 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) |
105 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) | 105 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) |
106 IPC_STRUCT_TRAITS_MEMBER(images_enabled) | 106 IPC_STRUCT_TRAITS_MEMBER(images_enabled) |
107 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) | 107 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) |
108 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled) | 108 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled) |
109 IPC_STRUCT_TRAITS_MEMBER(inspector_settings) | |
110 IPC_STRUCT_TRAITS_MEMBER(site_specific_quirks_enabled) | 109 IPC_STRUCT_TRAITS_MEMBER(site_specific_quirks_enabled) |
111 IPC_STRUCT_TRAITS_MEMBER(shrinks_standalone_images_to_fit) | 110 IPC_STRUCT_TRAITS_MEMBER(shrinks_standalone_images_to_fit) |
112 IPC_STRUCT_TRAITS_MEMBER(uses_universal_detector) | 111 IPC_STRUCT_TRAITS_MEMBER(uses_universal_detector) |
113 IPC_STRUCT_TRAITS_MEMBER(text_areas_are_resizable) | 112 IPC_STRUCT_TRAITS_MEMBER(text_areas_are_resizable) |
114 IPC_STRUCT_TRAITS_MEMBER(java_enabled) | 113 IPC_STRUCT_TRAITS_MEMBER(java_enabled) |
115 IPC_STRUCT_TRAITS_MEMBER(allow_scripts_to_close_windows) | 114 IPC_STRUCT_TRAITS_MEMBER(allow_scripts_to_close_windows) |
116 IPC_STRUCT_TRAITS_MEMBER(remote_fonts_enabled) | 115 IPC_STRUCT_TRAITS_MEMBER(remote_fonts_enabled) |
117 IPC_STRUCT_TRAITS_MEMBER(javascript_can_access_clipboard) | 116 IPC_STRUCT_TRAITS_MEMBER(javascript_can_access_clipboard) |
118 IPC_STRUCT_TRAITS_MEMBER(xslt_enabled) | 117 IPC_STRUCT_TRAITS_MEMBER(xslt_enabled) |
119 IPC_STRUCT_TRAITS_MEMBER(xss_auditor_enabled) | 118 IPC_STRUCT_TRAITS_MEMBER(xss_auditor_enabled) |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 IPC_STRUCT_TRAITS_MEMBER(statusBarVisible) | 212 IPC_STRUCT_TRAITS_MEMBER(statusBarVisible) |
214 IPC_STRUCT_TRAITS_MEMBER(toolBarVisible) | 213 IPC_STRUCT_TRAITS_MEMBER(toolBarVisible) |
215 IPC_STRUCT_TRAITS_MEMBER(locationBarVisible) | 214 IPC_STRUCT_TRAITS_MEMBER(locationBarVisible) |
216 IPC_STRUCT_TRAITS_MEMBER(scrollbarsVisible) | 215 IPC_STRUCT_TRAITS_MEMBER(scrollbarsVisible) |
217 IPC_STRUCT_TRAITS_MEMBER(resizable) | 216 IPC_STRUCT_TRAITS_MEMBER(resizable) |
218 IPC_STRUCT_TRAITS_MEMBER(fullscreen) | 217 IPC_STRUCT_TRAITS_MEMBER(fullscreen) |
219 IPC_STRUCT_TRAITS_MEMBER(dialog) | 218 IPC_STRUCT_TRAITS_MEMBER(dialog) |
220 IPC_STRUCT_TRAITS_END() | 219 IPC_STRUCT_TRAITS_END() |
221 | 220 |
222 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ | 221 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ |
OLD | NEW |