OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 // A struct for managing webkit's settings. | 5 // A struct for managing webkit's settings. |
6 // | 6 // |
7 // Adding new values to this class probably involves updating | 7 // Adding new values to this class probably involves updating |
8 // WebKit::WebSettings, content/common/view_messages.h, browser/tab_contents/ | 8 // WebKit::WebSettings, content/common/view_messages.h, browser/tab_contents/ |
9 // render_view_host_delegate_helper.cc, and browser/profiles/profile.cc. | 9 // render_view_host_delegate_helper.cc, and browser/profiles/profile.cc. |
10 | 10 |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 bool allow_file_access_from_file_urls; | 98 bool allow_file_access_from_file_urls; |
99 bool webaudio_enabled; | 99 bool webaudio_enabled; |
100 bool experimental_webgl_enabled; | 100 bool experimental_webgl_enabled; |
101 bool flash_3d_enabled; | 101 bool flash_3d_enabled; |
102 bool flash_stage3d_enabled; | 102 bool flash_stage3d_enabled; |
103 bool flash_stage3d_baseline_enabled; | 103 bool flash_stage3d_baseline_enabled; |
104 bool gl_multisampling_enabled; | 104 bool gl_multisampling_enabled; |
105 bool privileged_webgl_extensions_enabled; | 105 bool privileged_webgl_extensions_enabled; |
106 bool webgl_errors_to_console_enabled; | 106 bool webgl_errors_to_console_enabled; |
107 bool accelerated_compositing_for_overflow_scroll_enabled; | 107 bool accelerated_compositing_for_overflow_scroll_enabled; |
108 bool universal_accelerated_compositing_for_overflow_scroll_enabled; | |
109 bool accelerated_compositing_for_scrollable_frames_enabled; | 108 bool accelerated_compositing_for_scrollable_frames_enabled; |
110 bool composited_scrolling_for_frames_enabled; | 109 bool composited_scrolling_for_frames_enabled; |
111 bool mock_scrollbars_enabled; | 110 bool mock_scrollbars_enabled; |
112 bool threaded_html_parser; | 111 bool threaded_html_parser; |
113 bool show_paint_rects; | 112 bool show_paint_rects; |
114 bool asynchronous_spell_checking_enabled; | 113 bool asynchronous_spell_checking_enabled; |
115 bool unified_textchecker_enabled; | 114 bool unified_textchecker_enabled; |
116 bool accelerated_compositing_enabled; | 115 bool accelerated_compositing_enabled; |
117 bool force_compositing_mode; | 116 bool force_compositing_mode; |
118 bool accelerated_compositing_for_3d_transforms_enabled; | 117 bool accelerated_compositing_for_3d_transforms_enabled; |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 #endif | 180 #endif |
182 | 181 |
183 // We try to keep the default values the same as the default values in | 182 // We try to keep the default values the same as the default values in |
184 // chrome, except for the cases where it would require lots of extra work for | 183 // chrome, except for the cases where it would require lots of extra work for |
185 // the embedder to use the same default value. | 184 // the embedder to use the same default value. |
186 WebPreferences(); | 185 WebPreferences(); |
187 ~WebPreferences(); | 186 ~WebPreferences(); |
188 }; | 187 }; |
189 | 188 |
190 #endif // WEBKIT_COMMON_WEBPREFERENCES_H__ | 189 #endif // WEBKIT_COMMON_WEBPREFERENCES_H__ |
OLD | NEW |