common_param_traits_macros.h revision 58e6fbe4ee35d65e14b626c557d37565bf8ad179
1fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera// Use of this source code is governed by a BSD-style license that can be
3fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera// found in the LICENSE file.
4fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
5fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera// Singly or Multiply-included shared traits file depending on circumstances.
6fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera// This allows the use of IPC serialization macros in more than one IPC message
7fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera// file.
8fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#ifndef CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_
9fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#define CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_
10fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
11fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#include "content/public/common/console_message_level.h"
12fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#include "content/public/common/page_transition_types.h"
13fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#include "content/public/common/password_form.h"
14fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#include "content/public/common/security_style.h"
15fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#include "content/public/common/ssl_status.h"
16fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#include "content/public/common/webplugininfo.h"
179c78e8681dafcdf265bc733875bad436ef9ec220James Dong#include "ipc/ipc_message_macros.h"
18fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#include "net/base/request_priority.h"
19fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#include "third_party/WebKit/public/platform/WebPoint.h"
20fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#include "third_party/WebKit/public/platform/WebRect.h"
21fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#include "third_party/WebKit/public/platform/WebReferrerPolicy.h"
22fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#include "third_party/WebKit/public/platform/WebURLRequest.h"
23fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#include "third_party/WebKit/public/web/WebWindowFeatures.h"
24fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#include "ui/base/window_open_disposition.h"
25fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#include "webkit/common/webpreferences.h"
26fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
27fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#undef IPC_MESSAGE_EXPORT
28fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#define IPC_MESSAGE_EXPORT CONTENT_EXPORT
29fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
30fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_ENUM_TRAITS(content::ConsoleMessageLevel)
31fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_ENUM_TRAITS(content::PageTransition)
32fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_ENUM_TRAITS(content::SecurityStyle)
33fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_ENUM_TRAITS(WebKit::WebReferrerPolicy)
34fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_ENUM_TRAITS(WindowOpenDisposition)
35fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_ENUM_TRAITS(webkit_glue::EditingBehavior)
36fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_ENUM_TRAITS(content::PasswordForm::Type)
37fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_ENUM_TRAITS(net::RequestPriority)
38fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
39fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_BEGIN(WebKit::WebPoint)
40fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(x)
41fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(y)
42fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_END()
43fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
44fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_BEGIN(WebKit::WebRect)
45fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(x)
46fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(y)
47fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(width)
48fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(height)
49fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_END()
50fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
51fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_BEGIN(content::PasswordForm)
52fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_MEMBER(signon_realm)
53fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_MEMBER(origin)
54fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_MEMBER(action)
55fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_MEMBER(submit_element)
56fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_MEMBER(username_element)
57fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_MEMBER(username_value)
58fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_MEMBER(other_possible_usernames)
59fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_MEMBER(password_element)
60fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_MEMBER(password_value)
61fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_MEMBER(password_autocomplete_set)
62fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_MEMBER(old_password_element)
63fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_MEMBER(old_password_value)
64fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_MEMBER(ssl_valid)
65fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_MEMBER(preferred)
66fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_MEMBER(blacklisted_by_user)
67fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_MEMBER(type)
68fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_MEMBER(times_used)
69fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_END()
70fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
71fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_BEGIN(content::SSLStatus)
72fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(security_style)
73fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(cert_id)
74fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(cert_status)
75fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(security_bits)
76fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(connection_status)
77fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(content_status)
78fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_END()
79fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
80fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_BEGIN(content::WebPluginMimeType)
81fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(mime_type)
82fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(file_extensions)
83fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(description)
84fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(additional_param_names)
85fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(additional_param_values)
86fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_END()
87fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
88fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_BEGIN(content::WebPluginInfo)
89fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(name)
90fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(path)
91fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(version)
92fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(desc)
93fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(mime_types)
94fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(type)
95fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(pepper_permissions)
96fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_END()
97fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
98fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_BEGIN(WebPreferences)
99fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map)
100fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map)
101fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map)
102fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map)
103fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(cursive_font_family_map)
104fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family_map)
105fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(default_font_size)
106fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size)
107fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(minimum_font_size)
108fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size)
109fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(default_encoding)
110fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(javascript_enabled)
1119c78e8681dafcdf265bc733875bad436ef9ec220James Dong  IPC_STRUCT_TRAITS_MEMBER(web_security_enabled)
112fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically)
113fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically)
114fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(images_enabled)
115fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(plugins_enabled)
116fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled)
117fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(inspector_settings)
118fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(site_specific_quirks_enabled)
11990855078eb989944bca1824058d7231cd68e5021Henrik B Andersson  IPC_STRUCT_TRAITS_MEMBER(shrinks_standalone_images_to_fit)
120fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(uses_universal_detector)
121fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(text_areas_are_resizable)
122fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(java_enabled)
123fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(allow_scripts_to_close_windows)
124fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(remote_fonts_enabled)
125fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(javascript_can_access_clipboard)
126fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(xss_auditor_enabled)
127fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(dns_prefetching_enabled)
128fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(local_storage_enabled)
129fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(databases_enabled)
130fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(application_cache_enabled)
131fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(tabs_to_links)
132fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(hyperlink_auditing_enabled)
133fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(is_online)
134fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(user_style_sheet_enabled)
135fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(user_style_sheet_location)
136fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(author_and_user_styles_enabled)
137fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(allow_universal_access_from_file_urls)
138fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(allow_file_access_from_file_urls)
139fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(webaudio_enabled)
140fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(experimental_webgl_enabled)
141fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(experimental_websocket_enabled)
142fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(pinch_virtual_viewport_enabled)
143fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(flash_3d_enabled)
144fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(flash_stage3d_enabled)
145fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(flash_stage3d_baseline_enabled)
146fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(gl_multisampling_enabled)
147fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(privileged_webgl_extensions_enabled)
148fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(webgl_errors_to_console_enabled)
149fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(accelerated_compositing_for_overflow_scroll_enabled)
150fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(
151fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera      accelerated_compositing_for_scrollable_frames_enabled)
152fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(composited_scrolling_for_frames_enabled)
153fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(mock_scrollbars_enabled)
154fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(threaded_html_parser)
155fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(show_paint_rects)
156fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(asynchronous_spell_checking_enabled)
157fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(unified_textchecker_enabled)
158fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(accelerated_compositing_enabled)
159fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(force_compositing_mode)
160fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(accelerated_2d_canvas_enabled)
161fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(minimum_accelerated_2d_canvas_size)
162fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(antialiased_2d_canvas_disabled)
163fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(accelerated_filters_enabled)
164fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(gesture_tap_highlight_enabled)
165fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(accelerated_compositing_for_plugins_enabled)
166fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(accelerated_compositing_for_3d_transforms_enabled)
167fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(accelerated_compositing_for_animation_enabled)
168fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(accelerated_compositing_for_video_enabled)
169fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(memory_info_enabled)
170fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(fullscreen_enabled)
171fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(allow_displaying_insecure_content)
172fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(allow_running_insecure_content)
173fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(enable_scroll_animator)
174fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(visual_word_movement_enabled)
175fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(password_echo_enabled)
176fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(css_sticky_position_enabled)
1772d45dbd1910a7e51d383e8583017e6f26cd3498aHung Nguyen  IPC_STRUCT_TRAITS_MEMBER(css_shaders_enabled)
1782d45dbd1910a7e51d383e8583017e6f26cd3498aHung Nguyen  IPC_STRUCT_TRAITS_MEMBER(lazy_layout_enabled)
1792d45dbd1910a7e51d383e8583017e6f26cd3498aHung Nguyen  IPC_STRUCT_TRAITS_MEMBER(region_based_columns_enabled)
1802d45dbd1910a7e51d383e8583017e6f26cd3498aHung Nguyen  IPC_STRUCT_TRAITS_MEMBER(touch_enabled)
181fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(device_supports_touch)
182fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(device_supports_mouse)
183fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(touch_adjustment_enabled)
184fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(fixed_position_creates_stacking_context)
185fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(sync_xhr_in_documents_enabled)
186fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(deferred_image_decoding_enabled)
187fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(should_respect_image_orientation)
188fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(number_of_cpu_cores)
189fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(editing_behavior)
190fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(supports_multiple_windows)
191fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(viewport_enabled)
192fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(initialize_at_minimum_page_scale)
193fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(smart_insert_delete_enabled)
194fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(cookie_enabled)
195fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(spatial_navigation_enabled)
196fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#if defined(OS_ANDROID)
197fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(text_autosizing_enabled)
198fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(font_scale_factor)
199fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(force_enable_zoom)
200fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(double_tap_to_zoom_enabled)
201fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(user_gesture_required_for_media_playback)
202fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(default_video_poster_url)
203fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(support_deprecated_target_density_dpi)
204fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(use_wide_viewport)
205fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#endif
206fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_END()
207fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
2082d45dbd1910a7e51d383e8583017e6f26cd3498aHung NguyenIPC_STRUCT_TRAITS_BEGIN(WebKit::WebWindowFeatures)
209fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(x)
210fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(xSet)
211fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(y)
212fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(ySet)
213fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(width)
214fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(widthSet)
215fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(height)
216fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(heightSet)
217fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(menuBarVisible)
218fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(statusBarVisible)
219fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(toolBarVisible)
220fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(locationBarVisible)
221fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(scrollbarsVisible)
222fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(resizable)
223fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(fullscreen)
224fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera  IPC_STRUCT_TRAITS_MEMBER(dialog)
225fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraIPC_STRUCT_TRAITS_END()
226fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
227fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#endif  // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_
228fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera