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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 bool flash_3d_enabled; | 96 bool flash_3d_enabled; |
97 bool flash_stage3d_enabled; | 97 bool flash_stage3d_enabled; |
98 bool flash_stage3d_baseline_enabled; | 98 bool flash_stage3d_baseline_enabled; |
99 bool gl_multisampling_enabled; | 99 bool gl_multisampling_enabled; |
100 bool privileged_webgl_extensions_enabled; | 100 bool privileged_webgl_extensions_enabled; |
101 bool webgl_errors_to_console_enabled; | 101 bool webgl_errors_to_console_enabled; |
102 bool mock_scrollbars_enabled; | 102 bool mock_scrollbars_enabled; |
103 bool layer_squashing_enabled; | 103 bool layer_squashing_enabled; |
104 bool asynchronous_spell_checking_enabled; | 104 bool asynchronous_spell_checking_enabled; |
105 bool unified_textchecker_enabled; | 105 bool unified_textchecker_enabled; |
106 bool accelerated_compositing_for_video_enabled; | |
107 bool accelerated_2d_canvas_enabled; | 106 bool accelerated_2d_canvas_enabled; |
108 int minimum_accelerated_2d_canvas_size; | 107 int minimum_accelerated_2d_canvas_size; |
109 bool antialiased_2d_canvas_disabled; | 108 bool antialiased_2d_canvas_disabled; |
110 int accelerated_2d_canvas_msaa_sample_count; | 109 int accelerated_2d_canvas_msaa_sample_count; |
111 bool accelerated_filters_enabled; | 110 bool accelerated_filters_enabled; |
112 bool deferred_filters_enabled; | 111 bool deferred_filters_enabled; |
113 bool container_culling_enabled; | 112 bool container_culling_enabled; |
114 bool allow_displaying_insecure_content; | 113 bool allow_displaying_insecure_content; |
115 bool allow_running_insecure_content; | 114 bool allow_running_insecure_content; |
116 bool password_echo_enabled; | 115 bool password_echo_enabled; |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 // We try to keep the default values the same as the default values in | 177 // We try to keep the default values the same as the default values in |
179 // chrome, except for the cases where it would require lots of extra work for | 178 // chrome, except for the cases where it would require lots of extra work for |
180 // the embedder to use the same default value. | 179 // the embedder to use the same default value. |
181 WebPreferences(); | 180 WebPreferences(); |
182 ~WebPreferences(); | 181 ~WebPreferences(); |
183 }; | 182 }; |
184 | 183 |
185 } // namespace content | 184 } // namespace content |
186 | 185 |
187 #endif // CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ | 186 #endif // CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ |
OLD | NEW |