| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 bool show_paint_rects; | 111 bool show_paint_rects; |
| 112 bool asynchronous_spell_checking_enabled; | 112 bool asynchronous_spell_checking_enabled; |
| 113 bool unified_textchecker_enabled; | 113 bool unified_textchecker_enabled; |
| 114 bool accelerated_compositing_enabled; | 114 bool accelerated_compositing_enabled; |
| 115 bool force_compositing_mode; | 115 bool force_compositing_mode; |
| 116 bool accelerated_compositing_for_3d_transforms_enabled; | 116 bool accelerated_compositing_for_3d_transforms_enabled; |
| 117 bool accelerated_compositing_for_animation_enabled; | 117 bool accelerated_compositing_for_animation_enabled; |
| 118 bool accelerated_compositing_for_video_enabled; | 118 bool accelerated_compositing_for_video_enabled; |
| 119 bool accelerated_2d_canvas_enabled; | 119 bool accelerated_2d_canvas_enabled; |
| 120 int minimum_accelerated_2d_canvas_size; | 120 int minimum_accelerated_2d_canvas_size; |
| 121 bool deferred_2d_canvas_enabled; | |
| 122 bool antialiased_2d_canvas_disabled; | 121 bool antialiased_2d_canvas_disabled; |
| 123 bool accelerated_filters_enabled; | 122 bool accelerated_filters_enabled; |
| 124 bool gesture_tap_highlight_enabled; | 123 bool gesture_tap_highlight_enabled; |
| 125 bool accelerated_compositing_for_plugins_enabled; | 124 bool accelerated_compositing_for_plugins_enabled; |
| 126 bool memory_info_enabled; | 125 bool memory_info_enabled; |
| 127 bool fullscreen_enabled; | 126 bool fullscreen_enabled; |
| 128 bool allow_displaying_insecure_content; | 127 bool allow_displaying_insecure_content; |
| 129 bool allow_running_insecure_content; | 128 bool allow_running_insecure_content; |
| 130 bool password_echo_enabled; | 129 bool password_echo_enabled; |
| 131 bool should_print_backgrounds; | 130 bool should_print_backgrounds; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 // the embedder to use the same default value. | 170 // the embedder to use the same default value. |
| 172 WebPreferences(); | 171 WebPreferences(); |
| 173 ~WebPreferences(); | 172 ~WebPreferences(); |
| 174 | 173 |
| 175 void Apply(WebKit::WebView* web_view) const; | 174 void Apply(WebKit::WebView* web_view) const; |
| 176 }; | 175 }; |
| 177 | 176 |
| 178 } // namespace webkit_glue | 177 } // namespace webkit_glue |
| 179 | 178 |
| 180 #endif // WEBKIT_GLUE_WEBPREFERENCES_H__ | 179 #endif // WEBKIT_GLUE_WEBPREFERENCES_H__ |
| OLD | NEW |