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