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

Side by Side Diff: webkit/common/webpreferences.cc

Issue 145423002: Add an --enable-deferred-filters command-line flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Changes re: review comments Created 6 years, 11 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
« no previous file with comments | « webkit/common/webpreferences.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #include "webkit/common/webpreferences.h" 5 #include "webkit/common/webpreferences.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/strings/string_util.h" 8 #include "base/strings/string_util.h"
9 #include "base/strings/utf_string_conversions.h" 9 #include "base/strings/utf_string_conversions.h"
10 #include "third_party/WebKit/public/web/WebSettings.h" 10 #include "third_party/WebKit/public/web/WebSettings.h"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 accelerated_compositing_enabled(false), 68 accelerated_compositing_enabled(false),
69 force_compositing_mode(false), 69 force_compositing_mode(false),
70 accelerated_compositing_for_3d_transforms_enabled(false), 70 accelerated_compositing_for_3d_transforms_enabled(false),
71 accelerated_compositing_for_animation_enabled(false), 71 accelerated_compositing_for_animation_enabled(false),
72 accelerated_compositing_for_video_enabled(false), 72 accelerated_compositing_for_video_enabled(false),
73 accelerated_2d_canvas_enabled(false), 73 accelerated_2d_canvas_enabled(false),
74 minimum_accelerated_2d_canvas_size(257 * 256), 74 minimum_accelerated_2d_canvas_size(257 * 256),
75 antialiased_2d_canvas_disabled(false), 75 antialiased_2d_canvas_disabled(false),
76 accelerated_2d_canvas_msaa_sample_count(0), 76 accelerated_2d_canvas_msaa_sample_count(0),
77 accelerated_filters_enabled(false), 77 accelerated_filters_enabled(false),
78 deferred_filters_enabled(false),
78 gesture_tap_highlight_enabled(false), 79 gesture_tap_highlight_enabled(false),
79 accelerated_compositing_for_plugins_enabled(false), 80 accelerated_compositing_for_plugins_enabled(false),
80 memory_info_enabled(false), 81 memory_info_enabled(false),
81 fullscreen_enabled(false), 82 fullscreen_enabled(false),
82 allow_displaying_insecure_content(true), 83 allow_displaying_insecure_content(true),
83 allow_running_insecure_content(false), 84 allow_running_insecure_content(false),
84 password_echo_enabled(false), 85 password_echo_enabled(false),
85 should_print_backgrounds(false), 86 should_print_backgrounds(false),
86 should_clear_document_background(true), 87 should_clear_document_background(true),
87 enable_scroll_animator(false), 88 enable_scroll_animator(false),
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 COMPILE_ASSERT_MATCHING_ENUMS( 181 COMPILE_ASSERT_MATCHING_ENUMS(
181 webkit_glue::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); 182 webkit_glue::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac);
182 COMPILE_ASSERT_MATCHING_ENUMS( 183 COMPILE_ASSERT_MATCHING_ENUMS(
183 webkit_glue::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); 184 webkit_glue::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin);
184 COMPILE_ASSERT_MATCHING_ENUMS( 185 COMPILE_ASSERT_MATCHING_ENUMS(
185 webkit_glue::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); 186 webkit_glue::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix);
186 COMPILE_ASSERT_MATCHING_ENUMS( 187 COMPILE_ASSERT_MATCHING_ENUMS(
187 webkit_glue::EDITING_BEHAVIOR_ANDROID, WebSettings::EditingBehaviorAndroid); 188 webkit_glue::EDITING_BEHAVIOR_ANDROID, WebSettings::EditingBehaviorAndroid);
188 189
189 } // namespace webkit_glue 190 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/common/webpreferences.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698