| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 IPC_STRUCT_TRAITS_MEMBER(javascript_can_access_clipboard) | 103 IPC_STRUCT_TRAITS_MEMBER(javascript_can_access_clipboard) |
| 104 IPC_STRUCT_TRAITS_MEMBER(xslt_enabled) | 104 IPC_STRUCT_TRAITS_MEMBER(xslt_enabled) |
| 105 IPC_STRUCT_TRAITS_MEMBER(xss_auditor_enabled) | 105 IPC_STRUCT_TRAITS_MEMBER(xss_auditor_enabled) |
| 106 IPC_STRUCT_TRAITS_MEMBER(dns_prefetching_enabled) | 106 IPC_STRUCT_TRAITS_MEMBER(dns_prefetching_enabled) |
| 107 IPC_STRUCT_TRAITS_MEMBER(local_storage_enabled) | 107 IPC_STRUCT_TRAITS_MEMBER(local_storage_enabled) |
| 108 IPC_STRUCT_TRAITS_MEMBER(databases_enabled) | 108 IPC_STRUCT_TRAITS_MEMBER(databases_enabled) |
| 109 IPC_STRUCT_TRAITS_MEMBER(application_cache_enabled) | 109 IPC_STRUCT_TRAITS_MEMBER(application_cache_enabled) |
| 110 IPC_STRUCT_TRAITS_MEMBER(tabs_to_links) | 110 IPC_STRUCT_TRAITS_MEMBER(tabs_to_links) |
| 111 IPC_STRUCT_TRAITS_MEMBER(hyperlink_auditing_enabled) | 111 IPC_STRUCT_TRAITS_MEMBER(hyperlink_auditing_enabled) |
| 112 IPC_STRUCT_TRAITS_MEMBER(is_online) | 112 IPC_STRUCT_TRAITS_MEMBER(is_online) |
| 113 IPC_STRUCT_TRAITS_MEMBER(user_style_sheet_enabled) | |
| 114 IPC_STRUCT_TRAITS_MEMBER(user_style_sheet_location) | |
| 115 IPC_STRUCT_TRAITS_MEMBER(allow_universal_access_from_file_urls) | 113 IPC_STRUCT_TRAITS_MEMBER(allow_universal_access_from_file_urls) |
| 116 IPC_STRUCT_TRAITS_MEMBER(allow_file_access_from_file_urls) | 114 IPC_STRUCT_TRAITS_MEMBER(allow_file_access_from_file_urls) |
| 117 IPC_STRUCT_TRAITS_MEMBER(webaudio_enabled) | 115 IPC_STRUCT_TRAITS_MEMBER(webaudio_enabled) |
| 118 IPC_STRUCT_TRAITS_MEMBER(experimental_webgl_enabled) | 116 IPC_STRUCT_TRAITS_MEMBER(experimental_webgl_enabled) |
| 119 IPC_STRUCT_TRAITS_MEMBER(experimental_websocket_enabled) | 117 IPC_STRUCT_TRAITS_MEMBER(experimental_websocket_enabled) |
| 120 IPC_STRUCT_TRAITS_MEMBER(pinch_virtual_viewport_enabled) | 118 IPC_STRUCT_TRAITS_MEMBER(pinch_virtual_viewport_enabled) |
| 121 IPC_STRUCT_TRAITS_MEMBER(use_solid_color_scrollbars) | 119 IPC_STRUCT_TRAITS_MEMBER(use_solid_color_scrollbars) |
| 122 IPC_STRUCT_TRAITS_MEMBER(flash_3d_enabled) | 120 IPC_STRUCT_TRAITS_MEMBER(flash_3d_enabled) |
| 123 IPC_STRUCT_TRAITS_MEMBER(flash_stage3d_enabled) | 121 IPC_STRUCT_TRAITS_MEMBER(flash_stage3d_enabled) |
| 124 IPC_STRUCT_TRAITS_MEMBER(flash_stage3d_baseline_enabled) | 122 IPC_STRUCT_TRAITS_MEMBER(flash_stage3d_baseline_enabled) |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 IPC_STRUCT_TRAITS_MEMBER(statusBarVisible) | 205 IPC_STRUCT_TRAITS_MEMBER(statusBarVisible) |
| 208 IPC_STRUCT_TRAITS_MEMBER(toolBarVisible) | 206 IPC_STRUCT_TRAITS_MEMBER(toolBarVisible) |
| 209 IPC_STRUCT_TRAITS_MEMBER(locationBarVisible) | 207 IPC_STRUCT_TRAITS_MEMBER(locationBarVisible) |
| 210 IPC_STRUCT_TRAITS_MEMBER(scrollbarsVisible) | 208 IPC_STRUCT_TRAITS_MEMBER(scrollbarsVisible) |
| 211 IPC_STRUCT_TRAITS_MEMBER(resizable) | 209 IPC_STRUCT_TRAITS_MEMBER(resizable) |
| 212 IPC_STRUCT_TRAITS_MEMBER(fullscreen) | 210 IPC_STRUCT_TRAITS_MEMBER(fullscreen) |
| 213 IPC_STRUCT_TRAITS_MEMBER(dialog) | 211 IPC_STRUCT_TRAITS_MEMBER(dialog) |
| 214 IPC_STRUCT_TRAITS_END() | 212 IPC_STRUCT_TRAITS_END() |
| 215 | 213 |
| 216 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ | 214 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ |
| OLD | NEW |