1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_
6 #define CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_
12 #include "base/strings/string16.h"
13 #include "content/common/content_export.h"
14 #include "net/base/network_change_notifier.h"
15 #include "ui/base/touch/touch_device.h"
24 // Map of ISO 15924 four-letter script code to font family. For example,
25 // "Arab" to "My Arabic Font".
26 typedef std::map
<std::string
, base::string16
> ScriptFontFamilyMap
;
28 enum EditingBehavior
{
31 EDITING_BEHAVIOR_UNIX
,
32 EDITING_BEHAVIOR_ANDROID
,
33 EDITING_BEHAVIOR_LAST
= EDITING_BEHAVIOR_ANDROID
36 // Cache options for V8. See V8CacheOptions.h for information on the options.
38 V8_CACHE_OPTIONS_DEFAULT
,
39 V8_CACHE_OPTIONS_NONE
,
40 V8_CACHE_OPTIONS_PARSE
,
41 V8_CACHE_OPTIONS_CODE
,
42 V8_CACHE_OPTIONS_LAST
= V8_CACHE_OPTIONS_CODE
45 // ImageAnimationPolicy is used for controlling image animation
46 // when image frame is rendered for animation.
47 // See third_party/WebKit/Source/platform/graphics/ImageAnimationPolicy.h
48 // for information on the options.
49 enum ImageAnimationPolicy
{
50 IMAGE_ANIMATION_POLICY_ALLOWED
,
51 IMAGE_ANIMATION_POLICY_ANIMATION_ONCE
,
52 IMAGE_ANIMATION_POLICY_NO_ANIMATION
55 // The ISO 15924 script code for undetermined script aka Common. It's the
56 // default used on WebKit's side to get/set a font setting when no script is
58 CONTENT_EXPORT
extern const char kCommonScript
[];
60 // A struct for managing blink's settings.
62 // Adding new values to this class probably involves updating
63 // blink::WebSettings, content/common/view_messages.h, browser/tab_contents/
64 // render_view_host_delegate_helper.cc, and browser/profiles/profile.cc.
65 struct CONTENT_EXPORT WebPreferences
{
66 ScriptFontFamilyMap standard_font_family_map
;
67 ScriptFontFamilyMap fixed_font_family_map
;
68 ScriptFontFamilyMap serif_font_family_map
;
69 ScriptFontFamilyMap sans_serif_font_family_map
;
70 ScriptFontFamilyMap cursive_font_family_map
;
71 ScriptFontFamilyMap fantasy_font_family_map
;
72 ScriptFontFamilyMap pictograph_font_family_map
;
73 int default_font_size
;
74 int default_fixed_font_size
;
75 int minimum_font_size
;
76 int minimum_logical_font_size
;
77 std::string default_encoding
;
78 bool context_menu_on_mouse_up
;
79 bool javascript_enabled
;
80 bool web_security_enabled
;
81 bool javascript_can_open_windows_automatically
;
82 bool loads_images_automatically
;
85 bool dom_paste_enabled
;
86 bool shrinks_standalone_images_to_fit
;
87 bool uses_universal_detector
;
88 bool text_areas_are_resizable
;
89 bool allow_scripts_to_close_windows
;
90 bool remote_fonts_enabled
;
91 bool javascript_can_access_clipboard
;
93 bool xss_auditor_enabled
;
94 // We don't use dns_prefetching_enabled to disable DNS prefetching. Instead,
95 // we disable the feature at a lower layer so that we catch non-WebKit uses
96 // of DNS prefetch as well.
97 bool dns_prefetching_enabled
;
98 bool local_storage_enabled
;
99 bool databases_enabled
;
100 bool application_cache_enabled
;
102 bool caret_browsing_enabled
;
103 bool hyperlink_auditing_enabled
;
105 net::NetworkChangeNotifier::ConnectionType connection_type
;
106 bool allow_universal_access_from_file_urls
;
107 bool allow_file_access_from_file_urls
;
108 bool webaudio_enabled
;
109 bool experimental_webgl_enabled
;
110 bool pepper_3d_enabled
;
111 bool flash_3d_enabled
;
112 bool flash_stage3d_enabled
;
113 bool flash_stage3d_baseline_enabled
;
114 bool gl_multisampling_enabled
;
115 bool privileged_webgl_extensions_enabled
;
116 bool webgl_errors_to_console_enabled
;
117 bool mock_scrollbars_enabled
;
118 bool asynchronous_spell_checking_enabled
;
119 bool unified_textchecker_enabled
;
120 bool accelerated_2d_canvas_enabled
;
121 int minimum_accelerated_2d_canvas_size
;
122 bool antialiased_2d_canvas_disabled
;
123 bool antialiased_clips_2d_canvas_enabled
;
124 int accelerated_2d_canvas_msaa_sample_count
;
125 bool accelerated_filters_enabled
;
126 bool deferred_filters_enabled
;
127 bool container_culling_enabled
;
128 bool allow_displaying_insecure_content
;
129 bool allow_running_insecure_content
;
130 // If true, taints all <canvas> elements, regardless of origin.
131 bool disable_reading_from_canvas
;
132 // Strict mixed content checking disables both displaying and running insecure
133 // mixed content, and disables embedder notifications that such content was
134 // requested (thereby preventing user override).
135 bool strict_mixed_content_checking
;
136 // Strict powerful feature restrictions block insecure usage of powerful
137 // features (like geolocation) that we haven't yet disabled for the web at
139 bool strict_powerful_feature_restrictions
;
140 // Disallow user opt-in for blockable mixed content.
141 bool strictly_block_blockable_mixed_content
;
142 bool block_mixed_plugin_content
;
143 bool password_echo_enabled
;
144 bool should_print_backgrounds
;
145 bool should_clear_document_background
;
146 bool enable_scroll_animator
;
147 bool css_variables_enabled
;
149 // TODO(mustaq): Nuke when the new API is ready
150 bool device_supports_touch
;
151 // TODO(mustaq): Nuke when the new API is ready
152 bool device_supports_mouse
;
153 bool touch_adjustment_enabled
;
154 int pointer_events_max_touch_points
;
155 int available_pointer_types
;
156 ui::PointerType primary_pointer_type
;
157 int available_hover_types
;
158 ui::HoverType primary_hover_type
;
159 bool sync_xhr_in_documents_enabled
;
160 bool image_color_profiles_enabled
;
161 bool should_respect_image_orientation
;
162 int number_of_cpu_cores
;
163 EditingBehavior editing_behavior
;
164 bool supports_multiple_windows
;
165 bool viewport_enabled
;
166 bool viewport_meta_enabled
;
167 bool main_frame_resizes_are_orientation_changes
;
168 bool initialize_at_minimum_page_scale
;
169 bool smart_insert_delete_enabled
;
170 bool spatial_navigation_enabled
;
171 bool invert_viewport_scroll_order
;
172 int pinch_overlay_scrollbar_thickness
;
173 bool use_solid_color_scrollbars
;
174 bool navigate_on_drag_drop
;
175 V8CacheOptions v8_cache_options
;
176 bool slimming_paint_enabled
;
177 bool slimming_paint_v2_enabled
;
179 // This flags corresponds to a Page's Settings' setCookieEnabled state. It
180 // only controls whether or not the "document.cookie" field is properly
181 // connected to the backing store, for instance if you wanted to be able to
182 // define custom getters and setters from within a unique security content
183 // without raising a DOM security exception.
186 // This flag indicates whether H/W accelerated video decode is enabled for
187 // pepper plugins. Defaults to false.
188 bool pepper_accelerated_video_decode_enabled
;
190 ImageAnimationPolicy animation_policy
;
192 #if defined(OS_ANDROID)
193 bool text_autosizing_enabled
;
194 float font_scale_factor
;
195 float device_scale_adjustment
;
196 bool force_enable_zoom
;
197 bool fullscreen_supported
;
198 bool double_tap_to_zoom_enabled
;
199 bool user_gesture_required_for_media_playback
;
200 GURL default_video_poster_url
;
201 bool support_deprecated_target_density_dpi
;
202 bool use_legacy_background_size_shorthand_behavior
;
203 bool wide_viewport_quirk
;
204 bool use_wide_viewport
;
205 bool force_zero_layout_height
;
206 bool viewport_meta_layout_size_quirk
;
207 bool viewport_meta_merge_content_quirk
;
208 bool viewport_meta_non_user_scalable_quirk
;
209 bool viewport_meta_zero_values_quirk
;
210 bool clobber_user_agent_initial_scale_quirk
;
211 bool ignore_main_frame_overflow_hidden_quirk
;
212 bool report_screen_size_in_physical_pixels_quirk
;
213 bool record_whole_document
;
216 // Default (used if the page or UA doesn't override these) values for page
217 // scale limits. These are set directly on the WebView so there's no analogue
219 float default_minimum_page_scale_factor
;
220 float default_maximum_page_scale_factor
;
222 // We try to keep the default values the same as the default values in
223 // chrome, except for the cases where it would require lots of extra work for
224 // the embedder to use the same default value.
229 } // namespace content
231 #endif // CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_