OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ | 5 #ifndef CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ |
6 #define CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ | 6 #define CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 bool webaudio_enabled; | 110 bool webaudio_enabled; |
111 bool experimental_webgl_enabled; | 111 bool experimental_webgl_enabled; |
112 bool pepper_3d_enabled; | 112 bool pepper_3d_enabled; |
113 bool flash_3d_enabled; | 113 bool flash_3d_enabled; |
114 bool flash_stage3d_enabled; | 114 bool flash_stage3d_enabled; |
115 bool flash_stage3d_baseline_enabled; | 115 bool flash_stage3d_baseline_enabled; |
116 bool gl_multisampling_enabled; | 116 bool gl_multisampling_enabled; |
117 bool privileged_webgl_extensions_enabled; | 117 bool privileged_webgl_extensions_enabled; |
118 bool webgl_errors_to_console_enabled; | 118 bool webgl_errors_to_console_enabled; |
119 bool mock_scrollbars_enabled; | 119 bool mock_scrollbars_enabled; |
120 bool layer_squashing_enabled; | |
121 bool asynchronous_spell_checking_enabled; | 120 bool asynchronous_spell_checking_enabled; |
122 bool unified_textchecker_enabled; | 121 bool unified_textchecker_enabled; |
123 bool accelerated_2d_canvas_enabled; | 122 bool accelerated_2d_canvas_enabled; |
124 int minimum_accelerated_2d_canvas_size; | 123 int minimum_accelerated_2d_canvas_size; |
125 bool antialiased_2d_canvas_disabled; | 124 bool antialiased_2d_canvas_disabled; |
126 bool antialiased_clips_2d_canvas_enabled; | 125 bool antialiased_clips_2d_canvas_enabled; |
127 int accelerated_2d_canvas_msaa_sample_count; | 126 int accelerated_2d_canvas_msaa_sample_count; |
128 bool accelerated_filters_enabled; | 127 bool accelerated_filters_enabled; |
129 bool deferred_filters_enabled; | 128 bool deferred_filters_enabled; |
130 bool container_culling_enabled; | 129 bool container_culling_enabled; |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 // We try to keep the default values the same as the default values in | 207 // We try to keep the default values the same as the default values in |
209 // chrome, except for the cases where it would require lots of extra work for | 208 // chrome, except for the cases where it would require lots of extra work for |
210 // the embedder to use the same default value. | 209 // the embedder to use the same default value. |
211 WebPreferences(); | 210 WebPreferences(); |
212 ~WebPreferences(); | 211 ~WebPreferences(); |
213 }; | 212 }; |
214 | 213 |
215 } // namespace content | 214 } // namespace content |
216 | 215 |
217 #endif // CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ | 216 #endif // CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ |
OLD | NEW |