Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(325)

Side by Side Diff: webkit/glue/webpreferences.h

Issue 12871012: Removing command line switch to disable deferred 2d canvas. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 bool threaded_html_parser; 110 bool threaded_html_parser;
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 bool deferred_2d_canvas_enabled;
121 bool antialiased_2d_canvas_disabled; 120 bool antialiased_2d_canvas_disabled;
122 bool accelerated_filters_enabled; 121 bool accelerated_filters_enabled;
123 bool gesture_tap_highlight_enabled; 122 bool gesture_tap_highlight_enabled;
124 bool accelerated_compositing_for_plugins_enabled; 123 bool accelerated_compositing_for_plugins_enabled;
125 bool memory_info_enabled; 124 bool memory_info_enabled;
126 bool fullscreen_enabled; 125 bool fullscreen_enabled;
127 bool allow_displaying_insecure_content; 126 bool allow_displaying_insecure_content;
128 bool allow_running_insecure_content; 127 bool allow_running_insecure_content;
129 bool password_echo_enabled; 128 bool password_echo_enabled;
130 bool should_print_backgrounds; 129 bool should_print_backgrounds;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 // the embedder to use the same default value. 168 // the embedder to use the same default value.
170 WebPreferences(); 169 WebPreferences();
171 ~WebPreferences(); 170 ~WebPreferences();
172 171
173 void Apply(WebKit::WebView* web_view) const; 172 void Apply(WebKit::WebView* web_view) const;
174 }; 173 };
175 174
176 } // namespace webkit_glue 175 } // namespace webkit_glue
177 176
178 #endif // WEBKIT_GLUE_WEBPREFERENCES_H__ 177 #endif // WEBKIT_GLUE_WEBPREFERENCES_H__
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698